summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-11-13 19:23:41 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2020-11-13 19:23:41 +0100
commit4d78680d3f516fc9e34ad5e0b9316feaa753d293 (patch)
treedb94db66e17b95c0aefc3f2245e01fc6bedab7a4
parente315b5806e493231fc89236651f8f8110e3f8bf0 (diff)
taito_f3.h: fix wrong endianness I introduced yesterday
-rw-r--r--src/mame/includes/taito_f3.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/taito_f3.h b/src/mame/includes/taito_f3.h
index 6270229881a..0d3119e676a 100644
--- a/src/mame/includes/taito_f3.h
+++ b/src/mame/includes/taito_f3.h
@@ -68,12 +68,12 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_eeprom(*this, "eeprom"),
- m_textram(*this, "textram", 0x2000, ENDIANNESS_LITTLE),
- m_spriteram(*this, "spriteram", 0x10000, ENDIANNESS_LITTLE),
- m_charram(*this, "charram", 0x2000, ENDIANNESS_LITTLE),
- m_line_ram(*this, "line_ram", 0x10000, ENDIANNESS_LITTLE),
- m_pf_ram(*this, "pf_ram", 0xc000, ENDIANNESS_LITTLE),
- m_pivot_ram(*this, "pivot_ram", 0x10000, ENDIANNESS_LITTLE),
+ m_textram(*this, "textram", 0x2000, ENDIANNESS_BIG),
+ m_spriteram(*this, "spriteram", 0x10000, ENDIANNESS_BIG),
+ m_charram(*this, "charram", 0x2000, ENDIANNESS_BIG),
+ m_line_ram(*this, "line_ram", 0x10000, ENDIANNESS_BIG),
+ m_pf_ram(*this, "pf_ram", 0xc000, ENDIANNESS_BIG),
+ m_pivot_ram(*this, "pivot_ram", 0x10000, ENDIANNESS_BIG),
m_input(*this, "IN.%u", 0),
m_dial(*this, "DIAL.%u", 0),
m_eepromin(*this, "EEPROMIN"),