Fast toggle on alt+enter and key repeat are different things.
This here should fix the alt+enter issue.
This commit is contained in:
titiger
2016-11-09 23:25:59 +01:00
parent 6c2f722f30
commit cc64196c6b
2 changed files with 10 additions and 2 deletions

View File

@@ -106,6 +106,10 @@ private:
static bool isFullScreen;
static SDL_keysym keystate;
static bool tryVSynch;
static int64 lastToggle ;
static void setLastToggle(int64 lastToggle) {Window::lastToggle = lastToggle;}
static int64 getLastToggle() {return Window::lastToggle;}
static void setLastMouseEvent(int64 lastMouseEvent) {Window::lastMouseEvent = lastMouseEvent;}
static int64 getLastMouseEvent() {return Window::lastMouseEvent;}