| ... | ... |
@@ -96,6 +96,13 @@ uxnemu orca.rom | shim |
| 96 | 96 |
- `F3` capture screen |
| 97 | 97 |
- `F4` load boot.rom |
| 98 | 98 |
|
| 99 |
+### Buttons |
|
| 100 |
+ |
|
| 101 |
+- `LCTRL` A |
|
| 102 |
+- `LALT` B |
|
| 103 |
+- `LSHIFT` SEL |
|
| 104 |
+- `HOME` START |
|
| 105 |
+ |
|
| 99 | 106 |
## Need a hand? |
| 100 | 107 |
|
| 101 | 108 |
Find us in [`#uxn` on irc.esper.net](ircs://irc.esper.net:6697/#uxn). |
| ... | ... |
@@ -404,7 +404,7 @@ get_button(SDL_Event *event) |
| 404 | 404 |
case SDLK_LCTRL: return 0x01; |
| 405 | 405 |
case SDLK_LALT: return 0x02; |
| 406 | 406 |
case SDLK_LSHIFT: return 0x04; |
| 407 |
- case SDLK_ESCAPE: return 0x08; |
|
| 407 |
+ case SDLK_HOME: return 0x08; |
|
| 408 | 408 |
case SDLK_UP: return 0x10; |
| 409 | 409 |
case SDLK_DOWN: return 0x20; |
| 410 | 410 |
case SDLK_LEFT: return 0x40; |