Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gframe/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ void Game::LoadExpansions() {
errmsg.append(name);
errmsg.append(")! ");
errmsg.append(dataManager.errmsg);
mainGame->ErrorLog(errmsg.c_str());
ErrorLog(errmsg.c_str());
}
continue;
}
Expand All @@ -1264,7 +1264,7 @@ void Game::LoadExpansions() {
errmsg.append(" : ");
errmsg.append(name);
errmsg.append(")! Please make sure the file name is UTF-8 encoded in the archive.");
mainGame->ErrorLog(errmsg.c_str());
ErrorLog(errmsg.c_str());
continue;
}
deckBuilder.expansionPacks.push_back(fname);
Expand Down
Loading