From 91fdb8adcaed4c131bcc2fbb57b4ec19bf925d40 Mon Sep 17 00:00:00 2001 From: hap Date: Thu, 1 Apr 2021 17:11:21 +0200 Subject: battlane: fix a problem with double height sprites at last boss [dink] --- src/emu/memarray.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/emu/memarray.cpp') diff --git a/src/emu/memarray.cpp b/src/emu/memarray.cpp index a5248399924..48fde5f90ba 100644 --- a/src/emu/memarray.cpp +++ b/src/emu/memarray.cpp @@ -123,7 +123,7 @@ void memory_array::set_endianness(endianness_t endianness) //------------------------------------------------- // read8_from_*/write8_to_* - entry read/write -// heleprs for 1 byte-per-entry +// helpers for 1 byte-per-entry //------------------------------------------------- u32 memory_array::read8_from_8(int index) const { return reinterpret_cast(m_base)[index]; } @@ -147,7 +147,7 @@ void memory_array::write8_to_64be(int index, u32 data) { reinterpret_cast( //------------------------------------------------- // read16_from_*/write16_to_* - entry read/write -// heleprs for 2 bytes-per-entry +// helpers for 2 bytes-per-entry //------------------------------------------------- u32 memory_array::read16_from_8le(int index) const { return read8_from_8(index*2) | (read8_from_8(index*2+1) << 8); } @@ -171,7 +171,7 @@ void memory_array::write16_to_64be(int index, u32 data) { reinterpret_cast