Fixed spelling of EconoBanking

This commit is contained in:
Thomas Jentzsch 2022-04-10 16:25:15 +02:00
parent 8fd02dc8ad
commit 47710cdbcd
4 changed files with 4 additions and 4 deletions

View File

@ -5061,7 +5061,7 @@ Ms Pac-Man (Stella extended codes):
are not fully supported in the debugger.
<table cellpadding="2" border="1">
<tr><th>&nbsp;Type&nbsp;</th><th>Description</th><th>File Extension<br>(to force type)</th></tr>
<tr><td>0840 </td><td>8K ECONObanking</td><td>.084, .0840</td></tr>
<tr><td>0840 </td><td>8K EconoBanking</td><td>.084, .0840</td></tr>
<tr><td>0FA0 </td><td>8K Fotomania</td><td>.0FA, .0FA0</td></tr>
<tr><td>2IN1 &#185;</td><td>4-64K Multicart (2 games)</td><td>.2N1 </td></tr>
<tr><td>4IN1 &#185;</td><td>8-64K Multicart (4 games)</td><td>.4N1 </td></tr>

View File

@ -33,7 +33,7 @@ string Cartridge0840Widget::description()
{
ostringstream info;
info << "0840 ECONObanking, two 4K banks\n"
info << "0840 EconoBanking, two 4K banks\n"
<< CartridgeEnhancedWidget::description();
return info.str();

View File

@ -95,7 +95,7 @@ bool Bankswitch::isValidRomName(const string& name)
const std::array<Bankswitch::Description, static_cast<int>(Bankswitch::Type::NumSchemes)>
Bankswitch::BSList = {{
{ "AUTO" , "Auto-detect" },
{ "0840" , "0840 (8K ECONObank)" },
{ "0840" , "0840 (8K EconoBanking)" },
{ "0FA0" , "0FA0 (8K Fotomania)" },
{ "2IN1" , "2IN1 Multicart (4-64K)" },
{ "4IN1" , "4IN1 Multicart (8-64K)" },

View File

@ -26,7 +26,7 @@
#endif
/**
Cartridge class used for 0840 "Econobanking" 8K bankswitched games. There
Cartridge class used for 0840 "EconoBanking" 8K bankswitched games. There
are two 4K banks, which are switched by accessing $0800 (bank 0) and
$0840 (bank 1).