Skip to content

Commit

Permalink
Exit requires Left key too.
Browse files Browse the repository at this point in the history
Start + Select is the default combination in EmulationStation to quit games.
  • Loading branch information
t-gabor committed May 16, 2019
1 parent 0fa25d5 commit aaab3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3DS/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ int main(void) {

//receiveBuffer(sizeof(struct packet));

if((kHeld & KEY_START) && (kHeld & KEY_SELECT)) longjmp(exitJmp, 1);
if((kHeld & KEY_START) && (kHeld & KEY_SELECT) && (kHeld & KEY_L)) longjmp(exitJmp, 1);

gfxFlushBuffers();
gspWaitForVBlank();
Expand Down

0 comments on commit aaab3b4

Please sign in to comment.