summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author MetalliC <0vetal0@gmail.com>2020-01-11 15:58:06 +0200
committer MetalliC <0vetal0@gmail.com>2020-01-11 15:58:06 +0200
commit107b9d422513e5becb76a172c710aacdcf08237c (patch)
tree8a1412221a94aeab642d7b5d086eb30830ac5050
parent9fc51f3c2a4c3888de497ce5e9c8c7c4a77f4aa0 (diff)
minor (nw)
-rw-r--r--src/mame/drivers/konamigs.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/konamigs.cpp b/src/mame/drivers/konamigs.cpp
index c4f2af80026..30b238ecace 100644
--- a/src/mame/drivers/konamigs.cpp
+++ b/src/mame/drivers/konamigs.cpp
@@ -27,8 +27,8 @@
* denotes these games are archived
TODO:
- - currently implemented very basic set of Q2SD GPU features, required/used by Spray Hitter, should be improved if more games will be found.
- - hook IRQs from GPU and SPU (not used by Spray Hitter)
+ - currently implemented very basic set of Q2SD GPU features, required/used by dumped games, should be improved if more games will be found.
+ - hook IRQs from GPU and SPU (not used by dumped games)
Notes:
- hold Test + Service while booting to initialise RTC NVRAM
@@ -387,11 +387,11 @@ WRITE_LINE_MEMBER(gsan_state::vblank)
{
m_gpuregs[0x000 / 2] &= ~(1 << 9);
m_gpuregs[0x002 / 2] ^= 1 << 8; // DBF (display buffer)
- if (m_vbkem)
- {
- m_vbkem = false;
- do_render(true);
- }
+ }
+ if (m_vbkem)
+ {
+ m_vbkem = false;
+ do_render(true);
}
break;
}