summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2017-08-25 16:16:47 +0200
committer GitHub <noreply@github.com>2017-08-25 16:16:47 +0200
commitb79abf3adfe41500306a83044bfdfd713020dfe8 (patch)
tree21ec6aef82404c0ec7a99e759241aa0ee7b47ed2
parent088c71c63ff49369ab8a68388b3edbff728cb75d (diff)
Fix the note (nw)
-rw-r--r--src/devices/video/jangou_blitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/jangou_blitter.cpp b/src/devices/video/jangou_blitter.cpp
index 1e1a8a8b869..2d2e020a5b6 100644
--- a/src/devices/video/jangou_blitter.cpp
+++ b/src/devices/video/jangou_blitter.cpp
@@ -150,7 +150,7 @@ void jangou_blitter_device::trigger_write(void)
y = (m_y & 0xff);
#if 0
- // bail out if parameters are blantantly invalid (timing bug?)
+ // bail out if parameters are blantantly invalid (an indication that the host is using protection tho)
if((x + w) > 256 || (y + h) > 256)
{
printf("%d %d %d %d %08x\n",x,y,w,h,src);