summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2020-11-18 13:43:59 +0100
committer Olivier Galibert <galibert@pobox.com>2020-11-18 13:43:59 +0100
commit62fb1b50efce84cbd307630ca2183500b5446fc1 (patch)
tree60814370dc4dd82de73a5a356af16fb13d5e6386
parent13ef392715e82cb974b35459d4c6c4152004674f (diff)
Fix vsnes
-rw-r--r--src/mame/machine/vsnes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/vsnes.cpp b/src/mame/machine/vsnes.cpp
index 125479fb9bf..4654ba5a0e7 100644
--- a/src/mame/machine/vsnes.cpp
+++ b/src/mame/machine/vsnes.cpp
@@ -174,7 +174,7 @@ void vsnes_state::v_set_videorom_bank( int start, int count, int vrom_start_ban
/* count determines the size of the area mapped */
for (i = 0; i < count; i++)
{
- m_bank_vrom[i + start]->set_entry(vrom_start_bank + i);
+ m_chr_banks[i + start]->set_entry(vrom_start_bank + i);
}
}