mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-26 12:12:02 +00:00
Rename KEY_NONE definition.
This commit is contained in:
parent
974790944f
commit
7e2aa976b4
6 changed files with 10 additions and 10 deletions
|
@ -918,7 +918,7 @@ int main(int argc, char *argv[])
|
||||||
if (error || menu >= 3)
|
if (error || menu >= 3)
|
||||||
{
|
{
|
||||||
consolePrint("press any button to continue\n");
|
consolePrint("press any button to continue\n");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
menu--;
|
menu--;
|
||||||
} else {
|
} else {
|
||||||
selected_idx = scroll = 0;
|
selected_idx = scroll = 0;
|
||||||
|
@ -995,7 +995,7 @@ out2:
|
||||||
if (menu != UINT32_MAX)
|
if (menu != UINT32_MAX)
|
||||||
{
|
{
|
||||||
consolePrint("press any button to exit\n");
|
consolePrint("press any button to exit\n");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (app_metadata) free(app_metadata);
|
if (app_metadata) free(app_metadata);
|
||||||
|
|
|
@ -370,7 +370,7 @@ int main(int argc, char *argv[])
|
||||||
if (error || menu >= 3)
|
if (error || menu >= 3)
|
||||||
{
|
{
|
||||||
consolePrint("press any button to continue\n");
|
consolePrint("press any button to continue\n");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
menu--;
|
menu--;
|
||||||
} else {
|
} else {
|
||||||
selected_idx = scroll = 0;
|
selected_idx = scroll = 0;
|
||||||
|
@ -433,7 +433,7 @@ out2:
|
||||||
if (menu != UINT32_MAX)
|
if (menu != UINT32_MAX)
|
||||||
{
|
{
|
||||||
consolePrint("press any button to exit\n");
|
consolePrint("press any button to exit\n");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nca_ctx) free(nca_ctx);
|
if (nca_ctx) free(nca_ctx);
|
||||||
|
|
|
@ -419,7 +419,7 @@ end:
|
||||||
utilsChangeHomeButtonBlockStatus(false);
|
utilsChangeHomeButtonBlockStatus(false);
|
||||||
|
|
||||||
consolePrint("press any button to continue");
|
consolePrint("press any button to continue");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
@ -457,7 +457,7 @@ end:
|
||||||
utilsChangeHomeButtonBlockStatus(false);
|
utilsChangeHomeButtonBlockStatus(false);
|
||||||
|
|
||||||
consolePrint("press any button to continue");
|
consolePrint("press any button to continue");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
@ -624,7 +624,7 @@ end:
|
||||||
utilsChangeHomeButtonBlockStatus(false);
|
utilsChangeHomeButtonBlockStatus(false);
|
||||||
|
|
||||||
consolePrint("press any button to continue");
|
consolePrint("press any button to continue");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
|
@ -635,7 +635,7 @@ out2:
|
||||||
if (exit_prompt)
|
if (exit_prompt)
|
||||||
{
|
{
|
||||||
consolePrint("press any button to exit\n");
|
consolePrint("press any button to exit\n");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
}
|
}
|
||||||
|
|
||||||
romfsFreeContext(&romfs_ctx);
|
romfsFreeContext(&romfs_ctx);
|
||||||
|
|
|
@ -388,7 +388,7 @@ out2:
|
||||||
if (exit_prompt)
|
if (exit_prompt)
|
||||||
{
|
{
|
||||||
consolePrint("press any button to exit\n");
|
consolePrint("press any button to exit\n");
|
||||||
utilsWaitForButtonPress(KEY_NONE);
|
utilsWaitForButtonPress(KEY_ANY);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (legal_info_ctx)
|
if (legal_info_ctx)
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
#define BIS_SYSTEM_PARTITION_MOUNT_NAME "sys:"
|
#define BIS_SYSTEM_PARTITION_MOUNT_NAME "sys:"
|
||||||
|
|
||||||
#define KEY_NONE 0
|
#define KEY_ANY 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue