We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d416e4c commit ffd3382Copy full SHA for ffd3382
game/game.cpp
@@ -105,7 +105,7 @@ void Game::SetDaemonMode() {
105
}
106
107
LoadError Game::LoadGame(const string &filename_path) {
108
- const auto file = gzopen64(filename_path.c_str(), "rb");
+ const auto file = gzopen(filename_path.c_str(), "rb");
109
if (file == nullptr) {
110
return LoadErrorFileNotFound;
111
@@ -134,7 +134,7 @@ SaveError Game::SaveGame(const string& filename_path) {
134
return SaveErrorInvalidPath;
135
136
const auto json = serialise(character);
137
- const auto file = gzopen64(filename.c_str(), "wb9");
+ const auto file = gzopen(filename.c_str(), "wb9");
138
139
140
0 commit comments