Improvements to script control

This commit is contained in:
Such Meme, Many Skill
2020-05-02 23:35:25 +02:00
parent baac8dc2fb
commit acb43b67db
3 changed files with 9 additions and 1 deletions

View File

@@ -191,6 +191,10 @@ int filemenu(menu_entry file){
break;
case FILE_SCRIPT:
//ParseScript(fsutil_getnextloc(currentpath, file.name));
gfx_printf(" %kRelease any buttons if held!", COLOR_RED);
while (hidRead()->buttons);
runScript(fsutil_getnextloc(currentpath, file.name));
fsreader_readfolder(currentpath);
break;

View File

@@ -269,7 +269,7 @@ int part_MountMMC(){
}
int part_Pause(){
Inputs *input = hidWait();
Inputs *input = hidWaitMask(KEY_A | KEY_B | KEY_X | KEY_Y | KEY_POW | KEY_VOLP | KEY_VOLM | KEY_LUP | KEY_LDOWN | KEY_LLEFT | KEY_LRIGHT);
str_int_add("@BTN_POWER", input->pow);
str_int_add("@BTN_VOL+", input->volp);