aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llwindow/llkeyboardsdl.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:42 -0500
committerJacek Antonelli2008-08-15 23:45:42 -0500
commitce28e056c20bf2723f565bbf464b87781ec248a2 (patch)
treeef7b0501c4de4b631a916305cbc2a5fdc125e52d /linden/indra/llwindow/llkeyboardsdl.cpp
parentSecond Life viewer sources 1.19.1.4b (diff)
downloadmeta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.zip
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.gz
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.bz2
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.xz
Second Life viewer sources 1.20.2
Diffstat (limited to 'linden/indra/llwindow/llkeyboardsdl.cpp')
-rw-r--r--linden/indra/llwindow/llkeyboardsdl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llwindow/llkeyboardsdl.cpp b/linden/indra/llwindow/llkeyboardsdl.cpp
index f9d59ac..196a623 100644
--- a/linden/indra/llwindow/llkeyboardsdl.cpp
+++ b/linden/indra/llwindow/llkeyboardsdl.cpp
@@ -103,7 +103,7 @@ LLKeyboardSDL::LLKeyboardSDL()
103 mTranslateKeyMap[SDLK_KP_PLUS] = KEY_ADD; 103 mTranslateKeyMap[SDLK_KP_PLUS] = KEY_ADD;
104 mTranslateKeyMap[SDLK_KP_MINUS] = KEY_SUBTRACT; 104 mTranslateKeyMap[SDLK_KP_MINUS] = KEY_SUBTRACT;
105 mTranslateKeyMap[SDLK_KP_MULTIPLY] = KEY_MULTIPLY; 105 mTranslateKeyMap[SDLK_KP_MULTIPLY] = KEY_MULTIPLY;
106 mTranslateKeyMap[SDLK_KP_DIVIDE] = KEY_DIVIDE; 106 mTranslateKeyMap[SDLK_KP_DIVIDE] = KEY_PAD_DIVIDE;
107 mTranslateKeyMap[SDLK_F1] = KEY_F1; 107 mTranslateKeyMap[SDLK_F1] = KEY_F1;
108 mTranslateKeyMap[SDLK_F2] = KEY_F2; 108 mTranslateKeyMap[SDLK_F2] = KEY_F2;
109 mTranslateKeyMap[SDLK_F3] = KEY_F3; 109 mTranslateKeyMap[SDLK_F3] = KEY_F3;
@@ -121,7 +121,7 @@ LLKeyboardSDL::LLKeyboardSDL()
121 mTranslateKeyMap[SDLK_MINUS] = '-'; 121 mTranslateKeyMap[SDLK_MINUS] = '-';
122 mTranslateKeyMap[SDLK_PERIOD] = '.'; 122 mTranslateKeyMap[SDLK_PERIOD] = '.';
123 mTranslateKeyMap[SDLK_BACKQUOTE] = '`'; 123 mTranslateKeyMap[SDLK_BACKQUOTE] = '`';
124 mTranslateKeyMap[SDLK_SLASH] = '/'; 124 mTranslateKeyMap[SDLK_SLASH] = KEY_DIVIDE;
125 mTranslateKeyMap[SDLK_SEMICOLON] = ';'; 125 mTranslateKeyMap[SDLK_SEMICOLON] = ';';
126 mTranslateKeyMap[SDLK_LEFTBRACKET] = '['; 126 mTranslateKeyMap[SDLK_LEFTBRACKET] = '[';
127 mTranslateKeyMap[SDLK_BACKSLASH] = '\\'; 127 mTranslateKeyMap[SDLK_BACKSLASH] = '\\';