diff options
Diffstat (limited to 'src/mame/video/midtunit.cpp')
-rw-r--r-- | src/mame/video/midtunit.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/video/midtunit.cpp b/src/mame/video/midtunit.cpp index f792cb075c5..514602dfda0 100644 --- a/src/mame/video/midtunit.cpp +++ b/src/mame/video/midtunit.cpp @@ -20,8 +20,8 @@ #include "emuopts.h" // Used by PNG logging #include "png.h" // Used by PNG logging -#include <rapidjson/prettywriter.h> // Used by JSON logging -#include <rapidjson/stringbuffer.h> // Used by JSON logging +//#include <rapidjson/prettywriter.h> // Used by JSON logging +//#include <rapidjson/stringbuffer.h> // Used by JSON logging DEFINE_DEVICE_TYPE(MIDTUNIT_VIDEO, midtunit_video_device, "tunitvid", "Midway T-Unit Video") DEFINE_DEVICE_TYPE(MIDWUNIT_VIDEO, midwunit_video_device, "wunitvid", "Midway W-Unit Video") @@ -1019,7 +1019,7 @@ void midtunit_video_device::log_bitmap(int command, int bpp, bool Skip) } util::png_write_bitmap(file, nullptr, m_log_bitmap, 0, nullptr); - +#if 0 if (m_log_json) { char hex_buf[11]; @@ -1088,4 +1088,5 @@ void midtunit_video_device::log_bitmap(int command, int bpp, bool Skip) json.puts(s.GetString()); json.close(); } +#endif } |