Skip to content

Commit

Permalink
fix the fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MegAmi24 committed Mar 19, 2023
1 parent b94f6c0 commit 7f21d9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RSDKv4/Drawing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ void DrawStageGFX()
#if RETRO_REV03
#if !RETRO_USE_ORIGINAL_CODE
// Hacky fix for Tails Object not working properly in special stages on non-Origins bytecode
if (!Engine.usingBytecode || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
if (forceUseScripts || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
#endif
DrawObjectList(7);
#endif
Expand Down
4 changes: 2 additions & 2 deletions RSDKv4/Scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ void ProcessStage(void)
#if RETRO_REV03
#if !RETRO_USE_ORIGINAL_CODE
// Hacky fix for Tails Object not working properly in special stages on non-Origins bytecode
if (!Engine.usingBytecode || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
if (forceUseScripts || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
#endif
DrawObjectList(7);
#endif
Expand Down Expand Up @@ -476,7 +476,7 @@ void ProcessStage(void)
#if RETRO_REV03
#if !RETRO_USE_ORIGINAL_CODE
// Hacky fix for Tails Object not working properly in special stages on non-Origins bytecode
if (!Engine.usingBytecode || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
if (forceUseScripts || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
#endif
DrawObjectList(7);
#endif
Expand Down

0 comments on commit 7f21d9d

Please sign in to comment.