[client,sdl] remove static from sdlDisp::handle_display_event

This commit is contained in:
akallabeth 2024-09-30 17:28:10 +02:00
parent 1cd0d0ab6e
commit 9a82045bf2
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ class sdlDispContext
BOOL uninit(DispClientContext* disp);
#if SDL_VERSION_ATLEAST(2, 0, 10)
static BOOL handle_display_event(const SDL_DisplayEvent* ev);
BOOL handle_display_event(const SDL_DisplayEvent* ev);
#endif
BOOL handle_window_event(const SDL_WindowEvent* ev);

View File

@ -41,7 +41,7 @@ class sdlDispContext
BOOL init(DispClientContext* disp);
BOOL uninit(DispClientContext* disp);
static BOOL handle_display_event(const SDL_DisplayEvent* ev);
BOOL handle_display_event(const SDL_DisplayEvent* ev);
BOOL handle_window_event(const SDL_WindowEvent* ev);