Compare commits

...

2 commits

2 changed files with 5 additions and 1 deletions

View file

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

View file

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