summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-10-29 12:45:45 +1100
committer Vas Crabb <vas@vastheman.com>2019-10-29 12:45:45 +1100
commit1fbcfcb1a8a9e2a97d4fe3a4edd8df62efaf287e (patch)
treec98c5da129fbc2a3e459114f6b141a7f1683ee09
parenta83da80eb836ea5b863dc57b8f0c8d878ec26303 (diff)
screen.cpp: remove leftover debug print (nw)
-rw-r--r--src/emu/screen.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/emu/screen.cpp b/src/emu/screen.cpp
index 647bce77425..64af5b6f217 100644
--- a/src/emu/screen.cpp
+++ b/src/emu/screen.cpp
@@ -1041,11 +1041,6 @@ void screen_device::update_scan_bitmap_size(int y)
// determine effective size to allocate
s32 effwidth = std::max(m_max_width, m_visarea.right() + 1);
- if (machine().input().code_pressed(KEYCODE_Q))
- {
- printf("Updating scan bitmap %d to %d (%d vs. %d)\n", y, effwidth, m_max_width, m_visarea.right() + 1);
- }
-
if (m_scan_widths[y] == effwidth)
return;