Fixed missing function in input.cpp
This commit is contained in:
parent
e9e42322f0
commit
31e9d729c2
|
@ -23,7 +23,7 @@ bool sdl_event_filter(void* userdata, SDL_Event* event) {
|
||||||
SDL_KeyboardEvent* keyevent = (SDL_KeyboardEvent*)event;
|
SDL_KeyboardEvent* keyevent = (SDL_KeyboardEvent*)event;
|
||||||
|
|
||||||
if (keyevent->keysym.scancode == SDL_Scancode::SDL_SCANCODE_RETURN && (keyevent->keysym.mod & SDL_Keymod::KMOD_ALT)) {
|
if (keyevent->keysym.scancode == SDL_Scancode::SDL_SCANCODE_RETURN && (keyevent->keysym.mod & SDL_Keymod::KMOD_ALT)) {
|
||||||
ChangeWindow();
|
RT64ChangeWindow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
recomp::queue_event(*event);
|
recomp::queue_event(*event);
|
||||||
|
|
Loading…
Reference in New Issue