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 b917819 commit 5e6e3ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RSDKv3/Drawing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1944,7 +1944,7 @@ void DrawStageGFX()
DrawObjectList(5);
#if !RETRO_USE_ORIGINAL_CODE
// Hacky fix for Tails Object not working properly on non-Origins bytecode
if (!Engine.usingBytecode || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
if (forceUseScripts || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
#endif
DrawObjectList(7); // Extra Origins draw list (who knows why it comes before 6)
DrawObjectList(6);
Expand Down
2 changes: 1 addition & 1 deletion RSDKv3/Scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ void ProcessStage(void)
DrawObjectList(5);
#if !RETRO_USE_ORIGINAL_CODE
// Hacky fix for Tails Object not working properly on non-Origins bytecode
if (!Engine.usingBytecode || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
if (forceUseScripts || GetGlobalVariableByName("NOTIFY_1P_VS_SELECT") != 0)
#endif
DrawObjectList(7); // Extra Origins draw list (who knows why it comes before 6)
DrawObjectList(6);
Expand Down

0 comments on commit 5e6e3ca

Please sign in to comment.