another checkpoint in big df entity elimination pass

This commit is contained in:
Ryan Fleury
2024-09-04 15:50:59 -07:00
parent 9968c6e491
commit f8fd32e328
16 changed files with 3728 additions and 3105 deletions
+1 -1
View File
@@ -548,7 +548,7 @@ os_w32_wnd_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
U64 name_size = DragQueryFile(drop, idx, 0, 0) + 1;
U8 *name_ptr = push_array(os_w32_event_arena, U8, name_size);
DragQueryFile(drop, idx, name_ptr, name_size);
DragQueryFile(drop, idx, (char *)name_ptr, name_size);
str8_list_push(os_w32_event_arena, &event->strings, str8(name_ptr, name_size));
}
DragFinish(drop);