mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
hacks for MSVC building until better solutions are found. (nw)
This commit is contained in:
parent
4026809b0d
commit
c1b041e834
@ -154,7 +154,7 @@ public:
|
||||
void set_tag(const char *tag) { m_tag = tag; }
|
||||
|
||||
/// \brief Dummy tag always treated as not found
|
||||
constexpr static char DUMMY_TAG[] = "finder_dummy_tag";
|
||||
constexpr static char DUMMY_TAG[17] = "finder_dummy_tag";
|
||||
|
||||
protected:
|
||||
/// \brief Designated constructor
|
||||
|
@ -4,7 +4,11 @@
|
||||
// A "virtual" driver to play vgm files
|
||||
// Use with mame vgmplay -bitb file.vgm
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#include "zlib/zlib.h"
|
||||
#else
|
||||
#include <zlib.h>
|
||||
#endif
|
||||
|
||||
#include "emu.h"
|
||||
#include "debugger.h"
|
||||
|
Loading…
Reference in New Issue
Block a user