diff options
| author | 2014-11-26 10:37:58 +0100 | |
|---|---|---|
| committer | 2014-11-26 10:37:58 +0100 | |
| commit | ebeaa953a3a6ae98842b4a169bc95e5f3c673d8c (patch) | |
| tree | 41959790c00308fc3cac9c71176709f53683151d /src/mess/drivers/gamate.c | |
| parent | 18b8ce2f9467ae23672cea11f4a3fc5e42e24b9c (diff) | |
Cleanups and version bumpmame0156
Diffstat (limited to 'src/mess/drivers/gamate.c')
| -rw-r--r-- | src/mess/drivers/gamate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/gamate.c b/src/mess/drivers/gamate.c index 1728c3eedae..57adbc5a5e9 100644 --- a/src/mess/drivers/gamate.c +++ b/src/mess/drivers/gamate.c @@ -67,7 +67,7 @@ WRITE8_MEMBER( gamate_state::video_w ) case 5: video.y=data;break; case 7: if (video.bitmap.write) { - if (video.x<ARRAY_LENGTH(video.bitmap.data[0][0]) /*&& video.y<ARRAY_LENGTH(video.bitmap.data[0])*/) + if (video.x<ARRAY_LENGTH(video.bitmap.data[0][0]) /*&& video.y<ARRAY_LENGTH(video.bitmap.data[0])*/) video.bitmap.data[video.bitmap.page2][video.y][video.x]=data; else logerror("%.6f %04x video bitmap x %x invalid\n",machine().time().as_double(), m_maincpu->pc(), video.x); |
