mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
fatal: Finish CheckRepairStatus
This commit is contained in:
parent
f7a7ce1847
commit
caf9d11c8c
1 changed files with 45 additions and 23 deletions
|
@ -32,7 +32,10 @@ static bool InRepairWithoutVolHeld() {
|
||||||
|
|
||||||
{
|
{
|
||||||
GpioPadSession vol_btn;
|
GpioPadSession vol_btn;
|
||||||
if (R_SUCCEEDED(gpioOpenSession(&vol_btn, GpioPadName_ButtonVolUp))) {
|
if (R_FAILED(gpioOpenSession(&vol_btn, GpioPadName_ButtonVolUp))) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/* Ensure we close even on early return. */
|
/* Ensure we close even on early return. */
|
||||||
ON_SCOPE_EXIT { gpioPadClose(&vol_btn); };
|
ON_SCOPE_EXIT { gpioPadClose(&vol_btn); };
|
||||||
|
|
||||||
|
@ -51,7 +54,6 @@ static bool InRepairWithoutVolHeld() {
|
||||||
svcSleepThread(100000000UL);
|
svcSleepThread(100000000UL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -66,11 +68,31 @@ static bool InRepairWithoutTimeReviserCartridge() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: if (!IsGamecardInserted()) { return true; } */
|
FsGameCardHandle gc_hnd;
|
||||||
|
u8 gc_attr;
|
||||||
|
{
|
||||||
|
FsDeviceOperator devop;
|
||||||
|
if (R_FAILED(fsOpenDeviceOperator(&devop))) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/* TODO: return GetGameCardAttribute(GetGameCardHandle()) & GameCardAttribute_Repair == GameCardAttribute_Repair; */
|
/* Ensure we close even on early return. */
|
||||||
|
ON_SCOPE_EXIT { fsDeviceOperatorClose(&devop); };
|
||||||
|
|
||||||
return false;
|
/* Check that a gamecard is inserted. */
|
||||||
|
bool inserted;
|
||||||
|
if (R_FAILED(fsDeviceOperatorIsGameCardInserted(&devop, &inserted)) || !inserted) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check that we can retrieve the gamecard's attributes. */
|
||||||
|
if (R_FAILED(fsDeviceOperatorGetGameCardHandle(&devop, &gc_hnd)) || R_FAILED(fsDeviceOperatorGetGameCardAttribute(&devop, &gc_hnd, &gc_attr))) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check that the gamecard is a repair tool. */
|
||||||
|
return (gc_attr & FsGameCardAttribute_Repair) == FsGameCardAttribute_Repair;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CheckRepairStatus() {
|
void CheckRepairStatus() {
|
||||||
|
|
Loading…
Reference in a new issue