We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7333d3d commit 0730eb4Copy full SHA for 0730eb4
.vimrc
@@ -5,5 +5,5 @@ nnoremap <F4> :ter ++close ./_build/debug/breakhack<cr>
5
6
packadd termdebug
7
let g:termdebug_wide = 1
8
-let g:syntastic_c_include_dirs = [ '_build', '/usr/include/SDL2', 'steamworks_c_wrapper/src' ]
+let g:syntastic_c_include_dirs = [ '_build/debug', '/usr/include/SDL2', 'steamworks_c_wrapper/src' ]
9
let g:syntastic_cpp_include_dirs = [ 'steamworks_c_wrapper/sdk/public/steam' ]
src/main.c
@@ -250,6 +250,11 @@ bool initSDL(void)
250
SDL_GetError());
251
return false;
252
}
253
+
254
+ if (SDL_IsTextInputActive()) {
255
+ debug("Disabling text input");
256
+ SDL_StopTextInput();
257
+ }
258
259
return true;
260
0 commit comments