migration: replace SDL_DisplayMode w and h by screen_w and screen_h

This commit is contained in:
Sylvain 2023-01-29 14:54:24 +01:00 committed by Sam Lantinga
parent e22f5ed7d3
commit 413376cdb3

View file

@ -2334,3 +2334,23 @@ expression e;
@@
- SDL_WINDOW_INPUT_GRABBED
+ SDL_WINDOW_MOUSE_GRABBED
@@
SDL_DisplayMode *e;
@@
(
- e->w
+ e->screen_w
|
- e->h
+ e->screen_h
)
@@
SDL_DisplayMode e;
@@
(
- e.w
+ e.screen_w
|
- e.h
+ e.screen_h
)