diff --git a/Changes.txt b/Changes.txt
index 865583bc9..b3223ae83 100644
--- a/Changes.txt
+++ b/Changes.txt
@@ -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.
diff --git a/docs/index.html b/docs/index.html
index 469f6c02f..2bf2a540e 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -5062,7 +5062,7 @@ Ms Pac-Man (Stella extended codes):
Type | Description | File Extension (to force type) |
0840 | 8K ECONObanking | .084, .0840 |
- 0FA0 | 8K Mania | .0FA, .0FA0 |
+ 0FA0 | 8K Fotomania | .0FA, .0FA0 |
2IN1 ¹ | 4-64K Multicart (2 games) | .2N1 |
4IN1 ¹ | 8-64K Multicart (4 games) | .4N1 |
8IN1 ¹ | 16-64K Multicart (8 games) | .8N1 |
diff --git a/src/debugger/gui/Cart0FA0Widget.hxx b/src/debugger/gui/Cart0FA0Widget.hxx
index 0fc858a13..237718df5 100644
--- a/src/debugger/gui/Cart0FA0Widget.hxx
+++ b/src/debugger/gui/Cart0FA0Widget.hxx
@@ -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;
diff --git a/src/emucore/Bankswitch.cxx b/src/emucore/Bankswitch.cxx
index 5e5f2fd51..dbe55ef7b 100644
--- a/src/emucore/Bankswitch.cxx
+++ b/src/emucore/Bankswitch.cxx
@@ -96,7 +96,7 @@ const std::array(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)" },
diff --git a/src/emucore/CartDetector.cxx b/src/emucore/CartDetector.cxx
index 241ae601d..c882bacad 100644
--- a/src/emucore/CartDetector.cxx
+++ b/src/emucore/CartDetector.cxx
@@ -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] = {