summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mbc55x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mbc55x.cpp')
-rw-r--r--src/mame/video/mbc55x.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/mbc55x.cpp b/src/mame/video/mbc55x.cpp
index 4f586d8e4e0..79b09351b67 100644
--- a/src/mame/video/mbc55x.cpp
+++ b/src/mame/video/mbc55x.cpp
@@ -78,7 +78,7 @@ give the leftmost column of the rectangle, the next four give the next column, a
#define DEBUG_SET(flags) ((m_debug_video & (flags))==(flags))
-void mbc55x_state::video_debug(int ref, const std::vector<std::string> &params)
+void mbc55x_state::video_debug(const std::vector<std::string> &params)
{
if (params.size() > 0)
{
@@ -197,7 +197,7 @@ void mbc55x_state::video_start()
if (machine().debug_flags & DEBUG_FLAG_ENABLED)
{
using namespace std::placeholders;
- machine().debugger().console().register_command("mbc55x_vid_debug", CMDFLAG_NONE, 0, 0, 1, std::bind(&mbc55x_state::video_debug, this, _1, _2));
+ machine().debugger().console().register_command("mbc55x_vid_debug", CMDFLAG_NONE, 0, 1, std::bind(&mbc55x_state::video_debug, this, _1));
}
}