Skip to content

Commit 3ff7668

Browse files
committed
Hide RetroAchievements Hardcore until approval
1 parent 3719666 commit 3ff7668

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/src/main/cpp/ARMSX2Bridge.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ static dispatch_queue_t ARMSX2RetroAchievementsQueue()
457457
}
458458

459459
static constexpr bool ARMSX2RetroAchievementsAvailable = true;
460-
static constexpr bool ARMSX2RetroAchievementsHardcoreAvailable = true;
460+
static constexpr bool ARMSX2RetroAchievementsHardcoreAvailable = false;
461461

462462
static NSString* ARMSX2RetroAchievementsUnavailableMessage()
463463
{

app/src/main/swift/Views/Settings/RetroAchievementsSettingsView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ struct RetroAchievementsSettingsView: View {
131131
} header: {
132132
Text(settings.localized("Modes"))
133133
} footer: {
134-
Text(settings.localized(hardcoreSupported ?
135-
"Hardcore blocks cheat engines, PNACH cheat imports, slowdown, frame advance, and save-state loading. Turning Hardcore on during a running game applies after a full reset." :
136-
"Hardcore mode is hidden until RetroAchievements approval is complete."))
134+
if hardcoreSupported {
135+
Text(settings.localized("Hardcore blocks cheat engines, PNACH cheat imports, slowdown, frame advance, and save-state loading. Turning Hardcore on during a running game applies after a full reset."))
136+
}
137137
}
138138

139139
Section(settings.localized("Current Game")) {

0 commit comments

Comments
 (0)