Android Achievements - Hardcore disables

Disables state loading and emulation speeds below 100% when RetroAchievements hardcore mode is enabled.
This commit is contained in:
LillyJadeKatrin
2025-05-31 00:24:39 -04:00
parent f4f26a26d2
commit 1e0f6a557e
4 changed files with 17 additions and 1 deletions

View File

@@ -27,6 +27,13 @@ Java_org_dolphinemu_dolphinemu_features_settings_model_AchievementModel_logout(J
AchievementManager::GetInstance().Logout();
}
JNIEXPORT jboolean JNICALL
Java_org_dolphinemu_dolphinemu_features_settings_model_AchievementModel_isHardcoreModeActive(
JNIEnv* env, jclass)
{
return AchievementManager::GetInstance().IsHardcoreModeActive();
}
JNIEXPORT void JNICALL
Java_org_dolphinemu_dolphinemu_features_settings_model_AchievementModel_shutdown(JNIEnv* env,
jclass)