diff options
author | 2013-04-20 02:37:00 +0000 | |
---|---|---|
committer | 2013-04-20 02:37:00 +0000 | |
commit | 185c8b8beb5c35ff777a8ca4e4433a461b8bb4cd (patch) | |
tree | 3094a3958614e3390e2c0ee078d2400707e2d35e | |
parent | 6704d6e5d4ad90c9c50eefe1a38458186686cd63 (diff) |
Fix compile. This is hap's fault if it's wrong. (nw)
-rw-r--r-- | src/emu/imagedev/snapquik.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/imagedev/snapquik.c b/src/emu/imagedev/snapquik.c index 850bcbbb354..235445762cc 100644 --- a/src/emu/imagedev/snapquik.c +++ b/src/emu/imagedev/snapquik.c @@ -63,7 +63,8 @@ static TIMER_CALLBACK(process_snapshot_or_quickload) void snapshot_image_device::timer_callback() { /* invoke the load */ - (*m_load)(*this, filetype(), length()); +// (*m_load)(*this, filetype(), length()); + m_load(*this, filetype(), length()); /* unload the device */ unload(); |