Skip to content

Commit

Permalink
Replace "(Data Folder)" with "(Using Data Folder)" in legacy modes
Browse files Browse the repository at this point in the history
For legacy modes, "(Using Data Folder)" is seen in Origins as well as [a video of an old v4 tech demo made by Taxman running in v5U](https://x.com/RSDKFacts/status/1823745897894654364).
"(Data Folder)" is still used in v5 mode.
  • Loading branch information
MegAmi24 committed Aug 25, 2024
1 parent c7c2060 commit 471ee4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RSDKv5/RSDK/Core/RetroEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ void RSDK::InitEngine()

Legacy::v4::LoadGameConfig("Data/Game/GameConfig.bin");
if (!useDataPack)
strcat(gameVerInfo.gameTitle, " (Data Folder)");
strcat(gameVerInfo.gameTitle, " (Using Data Folder)");
strcpy(gameVerInfo.version, "Legacy v4 Mode");

RSDK::GenerateBlendLookupTable();
Expand Down Expand Up @@ -713,7 +713,7 @@ void RSDK::InitEngine()

Legacy::v3::LoadGameConfig("Data/Game/GameConfig.bin");
if (!useDataPack)
strcat(gameVerInfo.gameTitle, " (Data Folder)");
strcat(gameVerInfo.gameTitle, " (Using Data Folder)");
strcpy(gameVerInfo.version, "Legacy v3 Mode");

RSDK::GenerateBlendLookupTable();
Expand Down

0 comments on commit 471ee4f

Please sign in to comment.