mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-22 18:26:39 +00:00
gc_dumper: fix gamecard detection.
I'm dumb, sorry.
This commit is contained in:
parent
f9eb335a70
commit
b9018a7df0
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ static bool waitForGameCard(void)
|
||||||
while((g_appletStatus = appletMainLoop()))
|
while((g_appletStatus = appletMainLoop()))
|
||||||
{
|
{
|
||||||
status = gamecardGetStatus();
|
status = gamecardGetStatus();
|
||||||
if (status <= GameCardStatus_Processing) break;
|
if (status > GameCardStatus_Processing) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!g_appletStatus) return false;
|
if (!g_appletStatus) return false;
|
||||||
|
|
Loading…
Reference in a new issue