mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
Allow screenshotting in START menu
This commit is contained in:
parent
1b6360df13
commit
d653187818
@ -3,6 +3,7 @@
|
||||
#include "config.h"
|
||||
#include "font.h"
|
||||
#include "language.h"
|
||||
#include "screenshot.h"
|
||||
|
||||
#include <array>
|
||||
#include <nds.h>
|
||||
@ -66,6 +67,8 @@ void startMenu() {
|
||||
}
|
||||
} else if(pressed & KEY_B) {
|
||||
return;
|
||||
} else if(keysHeld() & KEY_R && pressed & KEY_L) {
|
||||
screenshot();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -125,6 +128,8 @@ void languageMenu() {
|
||||
return;
|
||||
} else if(pressed & KEY_B) {
|
||||
return;
|
||||
} else if(keysHeld() & KEY_R && pressed & KEY_L) {
|
||||
screenshot();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user