hacks for MSVC building until better solutions are found. (nw)

This commit is contained in:
smf- 2016-08-26 00:21:50 +01:00
parent 4026809b0d
commit c1b041e834
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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"