Fixed missing function in input.cpp

This commit is contained in:
Mr-Wiseguy 2024-01-02 11:06:07 -05:00
parent e9e42322f0
commit 31e9d729c2

View File

@ -23,7 +23,7 @@ bool sdl_event_filter(void* userdata, SDL_Event* event) {
SDL_KeyboardEvent* keyevent = (SDL_KeyboardEvent*)event;
if (keyevent->keysym.scancode == SDL_Scancode::SDL_SCANCODE_RETURN && (keyevent->keysym.mod & SDL_Keymod::KMOD_ALT)) {
ChangeWindow();
RT64ChangeWindow();
}
}
recomp::queue_event(*event);