Skip to content

Commit

Permalink
Forgot a minigame unlocks at 110 emblems.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Dec 13, 2015
1 parent 64ff26a commit 11a8e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SteamAchievements/SteamAchievements.cpp
Expand Up @@ -169,7 +169,7 @@ void SetEmblemCollected_r(SaveFileData *savefile, signed int index)
SetAchievement("NEW_ACHIEVEMENT_1_11"); // The Perfect Adventurer
SetAchievement("NEW_ACHIEVEMENT_1_12"); // Metal Sonic
}
else if (count % 20 == 0)
else if (count == 110 || count % 20 == 0)
SteamUserStats()->IndicateAchievementProgress("NEW_ACHIEVEMENT_1_11", count, 130);
if (*(int*)&savefile->Emblems == 0xFFFFFFFF)
SetAchievement("NEW_ACHIEVEMENT_1_7"); // The Fastest & Strongest
Expand Down

0 comments on commit 11a8e78

Please sign in to comment.