diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp
index 1b31737..e1396f9 100644
a
|
b
|
void KeyboardProcess(CORO_PARAM, const void *) {
|
218 | 218 | continue; |
219 | 219 | #endif |
220 | 220 | |
| 221 | case Common::KEYCODE_1: |
221 | 222 | case Common::KEYCODE_F1: |
222 | 223 | // Options dialog |
223 | 224 | ProcessKeyEvent(PLR_MENU); |
224 | 225 | continue; |
| 226 | case Common::KEYCODE_5: |
225 | 227 | case Common::KEYCODE_F5: |
226 | 228 | // Save game |
227 | 229 | ProcessKeyEvent(PLR_SAVE); |
228 | 230 | continue; |
| 231 | case Common::KEYCODE_7: |
229 | 232 | case Common::KEYCODE_F7: |
230 | 233 | // Load game |
231 | 234 | ProcessKeyEvent(PLR_LOAD); |