diff --git a/build/releasenotes/v1.1.5.txt b/build/releasenotes/v1.1.5.txt new file mode 100644 index 0000000..9a52beb --- /dev/null +++ b/build/releasenotes/v1.1.5.txt @@ -0,0 +1,8 @@ +0730eb4 Disable text input since this is on by default in SDL2.0 +7333d3d Update issue templates +70cc79f Merge pull request #47 from Oliveshark/add-code-of-conduct-1 +bdbb10b Create CODE_OF_CONDUCT.md +75660a5 Update to readme. +5d1490b Another README badge fix +aefbd95 Update readme to match new github url +90603b4 Fix what my bad build script broke diff --git a/src/main.c b/src/main.c index 0bc77e7..55f8fdc 100644 --- a/src/main.c +++ b/src/main.c @@ -257,6 +257,11 @@ bool initSDL(void) SDL_GetError()); return false; } + + if (SDL_IsTextInputActive()) { + debug("Disabling text input"); + SDL_StopTextInput(); + } return true; }