Compare commits
2 commits
a52568cc8d
...
456e5e676e
| Author | SHA1 | Date | |
|---|---|---|---|
| 456e5e676e | |||
| d496959f8b |
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue