fixed hotspot address

This commit is contained in:
Thomas Jentzsch 2019-07-28 08:19:24 +02:00
parent 8e177cf627
commit 78cce1e50b
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ string CartridgeUAWidget::bankState()
{
ostringstream& buf = buffer();
static const char* const spot[] = { "$200", "$240" };
static const char* const spot[] = { "$220", "$240" };
buf << "Bank = " << std::dec << myCart.getBank()
<< ", hotspot = " << spot[myCart.getBank()];