mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix challenge mode check, fixing savestates not showing up if logged out
This commit is contained in:
parent
3f924d1494
commit
636fcb9714
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ bool ChallengeModeActive() {
|
|||
if (!g_rcClient) {
|
||||
return false;
|
||||
}
|
||||
return rc_client_get_hardcore_enabled(g_rcClient);
|
||||
return IsLoggedIn() && rc_client_get_hardcore_enabled(g_rcClient);
|
||||
}
|
||||
|
||||
bool WarnUserIfChallengeModeActive(const char *message) {
|
||||
|
|
Loading…
Add table
Reference in a new issue