mirror of https://github.com/stella-emu/stella.git
Fixed spelling of EconoBanking
This commit is contained in:
parent
8fd02dc8ad
commit
47710cdbcd
|
@ -5061,7 +5061,7 @@ Ms Pac-Man (Stella extended codes):
|
||||||
are not fully supported in the debugger.
|
are not fully supported in the debugger.
|
||||||
<table cellpadding="2" border="1">
|
<table cellpadding="2" border="1">
|
||||||
<tr><th> Type </th><th>Description</th><th>File Extension<br>(to force type)</th></tr>
|
<tr><th> Type </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>0FA0 </td><td>8K Fotomania</td><td>.0FA, .0FA0</td></tr>
|
||||||
<tr><td>2IN1 ¹</td><td>4-64K Multicart (2 games)</td><td>.2N1 </td></tr>
|
<tr><td>2IN1 ¹</td><td>4-64K Multicart (2 games)</td><td>.2N1 </td></tr>
|
||||||
<tr><td>4IN1 ¹</td><td>8-64K Multicart (4 games)</td><td>.4N1 </td></tr>
|
<tr><td>4IN1 ¹</td><td>8-64K Multicart (4 games)</td><td>.4N1 </td></tr>
|
||||||
|
|
|
@ -33,7 +33,7 @@ string Cartridge0840Widget::description()
|
||||||
{
|
{
|
||||||
ostringstream info;
|
ostringstream info;
|
||||||
|
|
||||||
info << "0840 ECONObanking, two 4K banks\n"
|
info << "0840 EconoBanking, two 4K banks\n"
|
||||||
<< CartridgeEnhancedWidget::description();
|
<< CartridgeEnhancedWidget::description();
|
||||||
|
|
||||||
return info.str();
|
return info.str();
|
||||||
|
|
|
@ -95,7 +95,7 @@ bool Bankswitch::isValidRomName(const string& name)
|
||||||
const std::array<Bankswitch::Description, static_cast<int>(Bankswitch::Type::NumSchemes)>
|
const std::array<Bankswitch::Description, static_cast<int>(Bankswitch::Type::NumSchemes)>
|
||||||
Bankswitch::BSList = {{
|
Bankswitch::BSList = {{
|
||||||
{ "AUTO" , "Auto-detect" },
|
{ "AUTO" , "Auto-detect" },
|
||||||
{ "0840" , "0840 (8K ECONObank)" },
|
{ "0840" , "0840 (8K EconoBanking)" },
|
||||||
{ "0FA0" , "0FA0 (8K Fotomania)" },
|
{ "0FA0" , "0FA0 (8K Fotomania)" },
|
||||||
{ "2IN1" , "2IN1 Multicart (4-64K)" },
|
{ "2IN1" , "2IN1 Multicart (4-64K)" },
|
||||||
{ "4IN1" , "4IN1 Multicart (8-64K)" },
|
{ "4IN1" , "4IN1 Multicart (8-64K)" },
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#endif
|
#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
|
are two 4K banks, which are switched by accessing $0800 (bank 0) and
|
||||||
$0840 (bank 1).
|
$0840 (bank 1).
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue