add timerMs function, unmounting emu does not unmount sd

This commit is contained in:
suchmememanyskill
2021-01-05 15:55:11 +01:00
parent e98a3bba68
commit 502a246949
2 changed files with 6 additions and 4 deletions

View File

@@ -392,6 +392,10 @@ scriptFunction(funcSignSave){
return varInt((saveCommit(vars[0].stringType).err));
}
scriptFunction(funcGetMs){
return varInt(get_tmr_ms());
}
u8 fiveInts[] = {IntType, IntType, IntType, IntType, IntType};
u8 singleIntArray[] = { IntArrayType };
u8 singleInt[] = { IntType };
@@ -443,6 +447,7 @@ functionStruct_t scriptFunctions[] = {
{"mmcRestore", funcMmcRestore, 3, mmcReadWrite},
{"ncaGetType", funcGetNcaType, 1, singleStr},
{"saveSign", funcSignSave, 1, singleStr},
{"timerMs", funcGetMs, 0, NULL},
// Left from old: keyboard(?)
};