mirror of
https://github.com/holub/mame
synced 2025-06-29 23:48:56 +03:00
Fix emscripten compile (nw)
This commit is contained in:
parent
a320032368
commit
ae23d2ca40
@ -404,7 +404,7 @@ public:
|
||||
pformat &operator ()(const INT16 x, const char *f = "") { return update(f, "hd", x); }
|
||||
pformat &operator ()(const UINT16 x, const char *f = "") { return update(f, "hu", x); }
|
||||
|
||||
#if !defined(__MINGW32__) && !defined(__MINGW64__)
|
||||
#if !defined(__MINGW32__) && !defined(__MINGW64__) && !defined(EMSCRIPTEN)
|
||||
pformat &operator ()(const std::size_t x, const char *f = "") { return update(f, SIZETFMT, x); }
|
||||
#endif
|
||||
pformat &operator ()(const double x, const char *f = "") { return update(f, "g", x); }
|
||||
|
@ -8,6 +8,7 @@
|
||||
|
||||
#include "osdcore.h"
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
||||
//============================================================
|
||||
|
Loading…
Reference in New Issue
Block a user