diff options
| author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-02-21 13:51:21 +0100 |
|---|---|---|
| committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-02-21 13:51:21 +0100 |
| commit | 6f2af433ba7554a551481d19efe3ae7fba55bd46 (patch) | |
| tree | 73f1c34cdda0eb18b3a49a6b321ca8348b43d787 /src/client/interface.c | |
| parent | bc35ce59ff5e7df9956159d59bf07512a5a48fd8 (diff) | |
Use unicode by default for kbd.
Diffstat (limited to 'src/client/interface.c')
| -rw-r--r-- | src/client/interface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/interface.c b/src/client/interface.c index 33c4001..a53a73a 100644 --- a/src/client/interface.c +++ b/src/client/interface.c @@ -141,7 +141,8 @@ int initSDL() SDL_Quit(); return -1; } - + // enable unicode by default for keyboard support + SDL_EnableUNICODE(1); SDL_WM_SetCaption(WINDOW_TITLE, NULL); //SDL_ShowCursor(0); SDL_EnableKeyRepeat(0, 1); |