Skip to content

Commit e5422a7

Browse files
committed
fix missed sdl3 conversion
1 parent 71d2dd2 commit e5422a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tauon/t_modules/t_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38990,7 +38990,7 @@ def drop_file(target: str):
3899038990
sdl3.SDL_GetWindowSize(t_window, i_x, i_y)
3899138991
logical_size[0] = i_x.contents.value
3899238992
logical_size[1] = i_y.contents.value
38993-
sdl3.SDL_GL_GetDrawableSize(t_window, i_x, i_y)
38993+
sdl3.SDL_GetWindowSizeInPixels(t_window, i_x, i_y)
3899438994
window_size[0] = i_x.contents.value
3899538995
window_size[1] = i_y.contents.value
3899638996

0 commit comments

Comments
 (0)