diff --git a/data/notifications/notify.png b/data/notifications/notify.png index 99f6191..753f74c 100644 Binary files a/data/notifications/notify.png and b/data/notifications/notify.png differ diff --git a/data/notifications/notify.png:Zone.Identifier b/data/notifications/notify.png:Zone.Identifier deleted file mode 100644 index be537eb..0000000 Binary files a/data/notifications/notify.png:Zone.Identifier and /dev/null differ diff --git a/source/cheevos.cpp b/source/cheevos.cpp index 1152da7..40ed626 100644 --- a/source/cheevos.cpp +++ b/source/cheevos.cpp @@ -81,6 +81,7 @@ void Cheevos::init() c.id = 11; c.caption = "I LIKE MY MULTICOLOURED FRIENDS"; c.description = "Complete the game without dying"; + c.icon = 20; cheevos.push_back(c); c.id = 12; diff --git a/source/enter_id.cpp b/source/enter_id.cpp index cf5fdd7..5a3b869 100644 --- a/source/enter_id.cpp +++ b/source/enter_id.cpp @@ -300,7 +300,7 @@ void EnterID::initOnline() #else const std::string caption = "IS LOGGED IN"; #endif - screen->showNotification(options->online.jailerID, caption, 11); + screen->showNotification(options->online.jailerID, caption, 12); if (options->console) { std::cout << caption << std::endl; diff --git a/source/game.cpp b/source/game.cpp index 1da8fff..36a7ff6 100644 --- a/source/game.cpp +++ b/source/game.cpp @@ -163,19 +163,19 @@ void Game::checkEventHandler() break; case SDL_SCANCODE_F6: - screen->showNotification("ACHIEVEMENT UNLOCKED!", "FINISH THE GAME", 2); + screen->showNotification("ACHIEVEMENT UNLOCKED!", "I LIKE MY MULTICOLOURED FRIENDS", 2); break; case SDL_SCANCODE_F7: - screen->showNotification("NO ICON"); + screen->showNotification("ACHIEVEMENT UNLOCKED!", "I LIKE MY MULTICOLOURED FRIENDS", 3); break; case SDL_SCANCODE_F8: - screen->showNotification("NO ICON", "NO TEXT"); + screen->showNotification("JAILDESIGNER IS LOGGED IN", "", 4); break; case SDL_SCANCODE_F9: - screen->showNotification("JAILDESIGNER", "LOGGED IN", 1); + screen->showNotification("JAILDESIGNER IS LOGGED IN", "", 5); break; #endif