dev149 - crap

This commit is contained in:
tildearrow 2023-04-05 23:59:39 -05:00
parent 8e0a28f06e
commit 17f9eb0c16
2 changed files with 3 additions and 3 deletions

View File

@ -53,8 +53,8 @@
#define EXTERN_BUSY_BEGIN_SOFT e->softLocked=true; e->isBusy.lock();
#define EXTERN_BUSY_END e->isBusy.unlock(); e->softLocked=false;
#define DIV_VERSION "dev148"
#define DIV_ENGINE_VERSION 148
#define DIV_VERSION "dev149"
#define DIV_ENGINE_VERSION 149
// for imports
#define DIV_VERSION_MOD 0xff01
#define DIV_VERSION_FC 0xff02

View File

@ -56,7 +56,7 @@ bool deleteFile(const char* path) {
int fileExists(const char* path) {
#ifdef _WIN32
if (PathFileExistsW(utf8To16(path).c_str()) return 1;
if (PathFileExistsW(utf8To16(path).c_str())) return 1;
// which errors could PathFileExists possibly throw?
switch (GetLastError()) {
case ERROR_FILE_EXISTS: