Start button is now HOME

This commit is contained in:
neauoire 2021-12-27 13:42:36 -08:00
parent 51b9c699b8
commit 3c47876d5e
2 changed files with 8 additions and 1 deletions

View File

@ -96,6 +96,13 @@ uxnemu orca.rom | shim
- `F3` capture screen
- `F4` load boot.rom
### Buttons
- `LCTRL` A
- `LALT` B
- `LSHIFT` SEL
- `HOME` START
## Need a hand?
Find us in [`#uxn` on irc.esper.net](ircs://irc.esper.net:6697/#uxn).

View File

@ -404,7 +404,7 @@ get_button(SDL_Event *event)
case SDLK_LCTRL: return 0x01;
case SDLK_LALT: return 0x02;
case SDLK_LSHIFT: return 0x04;
case SDLK_ESCAPE: return 0x08;
case SDLK_HOME: return 0x08;
case SDLK_UP: return 0x10;
case SDLK_DOWN: return 0x20;
case SDLK_LEFT: return 0x40;