mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-22 21:09:52 +00:00
Fix missing return value in another function
This commit is contained in:
parent
294584c608
commit
cd6d4db7b8
@ -417,7 +417,7 @@ bool System_MakeRequest(SystemRequestType type, int requestId, const std::string
|
|||||||
dispatch_async(dispatch_get_main_queue(), ^{
|
dispatch_async(dispatch_get_main_queue(), ^{
|
||||||
[(AppDelegate *)[[UIApplication sharedApplication] delegate] restart:param1.c_str()];
|
[(AppDelegate *)[[UIApplication sharedApplication] delegate] restart:param1.c_str()];
|
||||||
});
|
});
|
||||||
break;
|
return true;
|
||||||
|
|
||||||
case SystemRequestType::EXIT_APP:
|
case SystemRequestType::EXIT_APP:
|
||||||
// NOTE: on iOS, this is considered a crash and not a valid way to exit.
|
// NOTE: on iOS, this is considered a crash and not a valid way to exit.
|
||||||
@ -508,8 +508,9 @@ bool System_MakeRequest(SystemRequestType type, int requestId, const std::string
|
|||||||
});
|
});
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
break;
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void System_Toast(std::string_view text) {}
|
void System_Toast(std::string_view text) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user