diff options
author | Ivan Vangelista <mesgnet@yahoo.it> | 2018-12-19 12:21:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-19 12:21:50 +0100 |
commit | c805cc733c162fce2a7941ac3036b40bebcc4ef5 (patch) | |
tree | 7c9d4ac92ce7ba689394e623ff553b6f5de96904 | |
parent | 4a93ae114f103cc16e01759df8d4a5d7438d942a (diff) |
snesb.cpp: setting the correct boot vector for rushbeat helps, but isn't enough (nw)
Boots to the copyright screen, than stands there
-rw-r--r-- | src/mame/drivers/snesb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/snesb.cpp b/src/mame/drivers/snesb.cpp index 16c71c4fe67..3efb634e167 100644 --- a/src/mame/drivers/snesb.cpp +++ b/src/mame/drivers/snesb.cpp @@ -1143,7 +1143,7 @@ void snesb_state::init_rushbeat() } // boot vector - dst[0xfffc] = 0x00; + dst[0xfffc] = 0xec; dst[0xfffd] = 0x80; init_snes_hirom(); |