From 9c6352c867ce65c677ce32d34e6148c7c1bf6299 Mon Sep 17 00:00:00 2001 From: Alayan Date: Sat, 22 Sep 2018 22:44:34 +0200 Subject: [PATCH] Add SuperSize in the artist debug mode menu --- src/utils/debug.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/utils/debug.cpp b/src/utils/debug.cpp index ac3bd6042..c892e778a 100644 --- a/src/utils/debug.cpp +++ b/src/utils/debug.cpp @@ -104,6 +104,7 @@ enum DebugMenuCommand DEBUG_POWERUP_PARACHUTE, DEBUG_POWERUP_PLUNGER, DEBUG_POWERUP_RUBBERBALL, + DEBUG_POWERUP_SUPER, DEBUG_POWERUP_SWATTER, DEBUG_POWERUP_SWITCH, DEBUG_POWERUP_ZIPPER, @@ -501,6 +502,9 @@ bool handleContextMenuAction(s32 cmd_id) case DEBUG_POWERUP_RUBBERBALL: addPowerup(PowerupManager::POWERUP_RUBBERBALL); break; + case DEBUG_POWERUP_SUPER: + addPowerup(PowerupManager::POWERUP_SUPER_SIZE); + break; case DEBUG_POWERUP_SWATTER: addPowerup(PowerupManager::POWERUP_SWATTER); break; @@ -904,6 +908,7 @@ bool onEvent(const SEvent &event) sub->addItem(L"Cake", DEBUG_POWERUP_CAKE ); sub->addItem(L"Parachute", DEBUG_POWERUP_PARACHUTE ); sub->addItem(L"Plunger", DEBUG_POWERUP_PLUNGER ); + sub->addItem(L"SuperSize", DEBUG_POWERUP_SUPER ); sub->addItem(L"Swatter", DEBUG_POWERUP_SWATTER ); sub->addItem(L"Switch", DEBUG_POWERUP_SWITCH ); sub->addItem(L"Zipper", DEBUG_POWERUP_ZIPPER );