Skip to content

Commit 61b49da

Browse files
committed
Fix compile for Linux targets after last changes
1 parent 2f92c0c commit 61b49da

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/osdep/amiberry_filesys.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <dirent.h>
2323
#include <iconv.h>
2424
#include <iostream>
25+
#include <mutex>
2526

2627
#ifdef USE_OLDGCC
2728
#include <experimental/filesystem>

src/osdep/fsdb_host.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* Copyright 2025 Dimitris Panokostas
1111
*/
1212

13+
#include <algorithm>
1314
#include <cstring>
1415
#include <climits>
1516
#include <memory>
@@ -36,7 +37,7 @@ enum
3637
NUM_EVILCHARS = 9
3738
};
3839

39-
static TCHAR evilchars[NUM_EVILCHARS] = { '%', '\\', '*', '?', '\"', '/', '|', '<', '>' };
40+
static char evilchars[NUM_EVILCHARS] = { '%', '\\', '*', '?', '\"', '/', '|', '<', '>' };
4041
static char hex_chars[] = "0123456789abcdef";
4142
#define UAEFSDB_BEGINS _T("__uae___")
4243

0 commit comments

Comments
 (0)