Compare commits

..

No commits in common. "456e5e676e153875a91501f0471c882f7b7bb260" and "a52568cc8dd3f0503c47d18f0ee2fdaee2deff0c" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View file

@ -84,11 +84,7 @@ GameEngine::GameEngine(const McRogueFaceConfig& cfg)
// Desktop: create save/ in working directory (WASM uses IDBFS mount from JS) // Desktop: create save/ in working directory (WASM uses IDBFS mount from JS)
struct stat st; struct stat st;
if (stat("save", &st) != 0) { if (stat("save", &st) != 0) {
#ifdef _WIN32
mkdir("save");
#else
mkdir("save", 0755); mkdir("save", 0755);
#endif
} }
#endif #endif

View file

@ -1,4 +1,4 @@
#pragma once #pragma once
// McRogueFace version string (#164) // McRogueFace version string (#164)
#define MCRFPY_VERSION "0.2.8-7DRL-2026" #define MCRFPY_VERSION "0.2.7-prerelease-7drl2026"