Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

Commit

Permalink
y<->select
Browse files Browse the repository at this point in the history
  • Loading branch information
lemon32767 committed May 31, 2020
1 parent 723d836 commit 16bfa5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ devkitARM
|Z/C |A | Jump |
|X/V |B/X | Dash |
|ENTER |START | Pause |
|F |Y | Fullscreen |
|F |SELECT | Fullscreen |
|ESC |n/a | Quit |
|SHIFT+D |SELECT+L | Load state |
|SHIFT+S |SELECT+R | Save state |
|SHIFT+D |Y+L | Load state |
|SHIFT+S |Y+R | Save state |
|Hold SHIFT+ENTER+R|Hold SELECT+START+Y| Reset |

# credits
Expand Down
4 changes: 2 additions & 2 deletions sdl12main.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ int main(int argc, char** argv) {
SDL_N3DSKeyBind(KEY_CPAD_DOWN|KEY_CSTICK_DOWN, SDLK_DOWN);
SDL_N3DSKeyBind(KEY_CPAD_LEFT|KEY_CSTICK_LEFT, SDLK_LEFT);
SDL_N3DSKeyBind(KEY_CPAD_RIGHT|KEY_CSTICK_RIGHT, SDLK_RIGHT);
SDL_N3DSKeyBind(KEY_Y, SDLK_f); //to switch full screen
SDL_N3DSKeyBind(KEY_SELECT, SDLK_f); //to switch full screen

SDL_N3DSKeyBind(KEY_SELECT, SDLK_LSHIFT); //hold to reset / load/save state
SDL_N3DSKeyBind(KEY_Y, SDLK_LSHIFT); //hold to reset / load/save state
SDL_N3DSKeyBind(KEY_L, SDLK_d); //load state
SDL_N3DSKeyBind(KEY_R, SDLK_s); //save state
#endif
Expand Down

0 comments on commit 16bfa5e

Please sign in to comment.