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:47:43 +1100
commitd4a42bd13f60732a208fb143da4b303746a368d9 (patch)
treed48e274bc3688185d9915d3b9e88d07558e511c8
parentb085530756fbd23576dc5fc9b00829e7ceb5c0a1 (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 a946fb22bd2..4ac63a0e981 100644
--- a/src/emu/screen.cpp
+++ b/src/emu/screen.cpp
@@ -1039,11 +1039,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;