Skip to content

Commit

Permalink
The game will no longer fail to continue if the side specific mix fil…
Browse files Browse the repository at this point in the history
…es are not found.
  • Loading branch information
CCHyper committed Mar 28, 2022
1 parent 63e0f16 commit 9e5a94c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/extensions/init/initext_hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static bool Vinifera_Prep_For_Side(SideType side)
ASSERT(mix);
if (!mix) {
DEBUG_WARNING(" Failed to load %s!\n", buffer);
return false;
//return false; // #issue-193: Unable to load side mix files is no longer a fatal error.
}
if (!mix->Cache()) {
DEBUG_WARNING(" Failed to cache %s!\n", buffer);
Expand All @@ -114,7 +114,7 @@ static bool Vinifera_Prep_For_Side(SideType side)
ASSERT(SideCachedMix);
if (!SideCachedMix) {
DEBUG_WARNING(" Failed to load %s!\n", buffer);
return false;
//return false; // #issue-193: Unable to load side mix files is no longer a fatal error.
}
if (!SideCachedMix->Cache()) {
DEBUG_WARNING(" Failed to cache %s!\n", buffer);
Expand All @@ -129,7 +129,7 @@ static bool Vinifera_Prep_For_Side(SideType side)
ASSERT(SideNotCachedMix);
if (!SideNotCachedMix) {
DEBUG_WARNING(" Failed to load %s!\n", buffer);
return false;
//return false; // #issue-193: Unable to load side mix files is no longer a fatal error.
}
DEBUG_INFO(" %s\n", buffer);
}
Expand All @@ -145,7 +145,7 @@ static bool Vinifera_Prep_For_Side(SideType side)
ASSERT(SideCDMix);
if (!SideCDMix) {
DEBUG_WARNING(" Failed to load %s!\n", buffer);
return false;
//return false; // #issue-193: Unable to load side mix files is no longer a fatal error.
}
DEBUG_INFO(" %s\n", buffer);
}
Expand Down

0 comments on commit 9e5a94c

Please sign in to comment.