summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2020-11-28 21:42:09 +0100
committer Olivier Galibert <galibert@pobox.com>2020-11-28 21:42:20 +0100
commit9ef8720eb84a3765f9e9591a11de868a2cc5ff4f (patch)
tree02953e9ac15f53122076a5445ecfedaa7bdb4f3f /src
parent975bf2efae2e173609c2fb66ea4dfca789999d58 (diff)
Fix an address space number collision in vgmplay
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/vgmplay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/vgmplay.cpp b/src/mame/drivers/vgmplay.cpp
index 753042585ba..7ab2ecf66ca 100644
--- a/src/mame/drivers/vgmplay.cpp
+++ b/src/mame/drivers/vgmplay.cpp
@@ -70,7 +70,7 @@
#include <vector>
#define AS_IO16LE 1
-#define AS_IO16BE 2
+#define AS_IO16BE 4
class vgmplay_disassembler : public util::disasm_interface
{