mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 11:44:17 +01:00
Removed worthless DEBUG_FLAG_PC_FROM_DEBUG_MENU config
This commit is contained in:
parent
93dd8786ee
commit
5ebc996c51
@ -16,6 +16,5 @@
|
||||
|
||||
// Replace the used flags with others or disable with a 0
|
||||
#define DEBUG_FLAG_NO_COLLISION 0 // If this flag is set, the debug function in the Utility submenu to disable player collision can be used.
|
||||
#define DEBUG_FLAG_PC_FROM_DEBUG_MENU 0 // If this flag is set, the debug function in debug menu to access the player PC works.
|
||||
|
||||
#endif // GUARD_CONSTANTS_OVERWORLD_CONFIG_H
|
||||
|
10
src/debug.c
10
src/debug.c
@ -2792,16 +2792,6 @@ static void DebugAction_Give_CHEAT(u8 taskId)
|
||||
ScriptContext_SetupScript(Debug_CheatStart);
|
||||
}
|
||||
|
||||
static void Task_WaitFadeAccessPC(u8 taskId)
|
||||
{
|
||||
if (!gPaletteFade.active)
|
||||
{
|
||||
DestroyTask(taskId);
|
||||
FlagSet(DEBUG_FLAG_PC_FROM_DEBUG_MENU);
|
||||
EnterPokeStorage(2);
|
||||
}
|
||||
}
|
||||
|
||||
static void DebugAction_AccessPC(u8 taskId)
|
||||
{
|
||||
Debug_DestroyMenu_Full(taskId);
|
||||
|
@ -1669,18 +1669,10 @@ static void FieldTask_ReturnToPcMenu(void)
|
||||
MainCallback vblankCb = gMain.vblankCallback;
|
||||
|
||||
SetVBlankCallback(NULL);
|
||||
if (!FlagGet(DEBUG_FLAG_PC_FROM_DEBUG_MENU))
|
||||
{
|
||||
taskId = CreateTask(Task_PCMainMenu, 80);
|
||||
gTasks[taskId].tState = 0;
|
||||
gTasks[taskId].tSelectedOption = sPreviousBoxOption;
|
||||
Task_PCMainMenu(taskId);
|
||||
}
|
||||
else
|
||||
{
|
||||
FlagClear(DEBUG_FLAG_PC_FROM_DEBUG_MENU);
|
||||
ScriptContext_Enable();
|
||||
}
|
||||
taskId = CreateTask(Task_PCMainMenu, 80);
|
||||
gTasks[taskId].tState = 0;
|
||||
gTasks[taskId].tSelectedOption = sPreviousBoxOption;
|
||||
Task_PCMainMenu(taskId);
|
||||
SetVBlankCallback(vblankCb);
|
||||
FadeInFromBlack();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user