fixed company name into Fotomania

This commit is contained in:
Thomas Jentzsch 2022-04-10 16:16:12 +02:00
parent 2cf31c10ee
commit 8fd02dc8ad
5 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@
* Enhanced support for CDFJ+ bankswitching type.
* Added 0FA0 bankswitching for Mania ROMs
* Added 0FA0 bankswitching for Fotomania ROMs
* Added ARM chip auto detection.

View File

@ -5062,7 +5062,7 @@ Ms Pac-Man (Stella extended codes):
<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>0FA0 </td><td>8K Mania</td><td>.0FA, .0FA0</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>
<tr><td>8IN1 &#185;</td><td>16-64K Multicart (8 games)</td><td>.8N1 </td></tr>

View File

@ -32,7 +32,7 @@ class Cartridge0FA0Widget : public CartridgeEnhancedWidget
~Cartridge0FA0Widget() override = default;
private:
string manufacturer() override { return "Mania"; }
string manufacturer() override { return "Fotomania"; }
string description() override;

View File

@ -96,7 +96,7 @@ const std::array<Bankswitch::Description, static_cast<int>(Bankswitch::Type::Num
Bankswitch::BSList = {{
{ "AUTO" , "Auto-detect" },
{ "0840" , "0840 (8K ECONObank)" },
{ "0FA0" , "0FA0 (8K Mania)" },
{ "0FA0" , "0FA0 (8K Fotomania)" },
{ "2IN1" , "2IN1 Multicart (4-64K)" },
{ "4IN1" , "4IN1 Multicart (8-64K)" },
{ "8IN1" , "8IN1 Multicart (16-64K)" },

View File

@ -349,7 +349,7 @@ bool CartDetector::isProbably0840(const ByteBuffer& image, size_t size)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
bool CartDetector::isProbably0FA0(const ByteBuffer& image, size_t size)
{
// Other Brazilian (Atari Mania) ROM's bankswitching switches to bank 1 by
// Other Brazilian (Fotomania) ROM's bankswitching switches to bank 1 by
// accessing address 0xFC0 using 'BIT $FC0', 'BIT $FC0' or 'STA $FC0'
// Also a game (Motocross) using 'BIT $EFC0' has been found
static constexpr uInt8 signature[4][3] = {