summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-09-22 13:34:40 +1000
committer Vas Crabb <vas@vastheman.com>2019-09-22 13:34:40 +1000
commit5036387ab45d9ecf499074dd5157542f3f100881 (patch)
treec78dcaeb2f06983dc85a1f800b88e62b8a4291f4 /src/emu
parent1b7b678f402475f574af6da081c464806d7e012e (diff)
srcclean (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/emupal.cpp2
-rw-r--r--src/emu/natkeyboard.h4
-rw-r--r--src/emu/video/generic.cpp12
3 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/emupal.cpp b/src/emu/emupal.cpp
index d4c8818419c..e1db3882525 100644
--- a/src/emu/emupal.cpp
+++ b/src/emu/emupal.cpp
@@ -535,7 +535,7 @@ void palette_device::device_start()
{
// forcing endianness only makes sense when the RAM is narrower than the palette format and not split
if (share_ext || (m_paletteram.membits() / 8) >= bytes_per_entry)
- throw emu_fatalerror("palette_device(%s): Improper use of MCFG_PALETTE_ENDIANNESS", tag());
+ throw emu_fatalerror("palette_device(%s): Improper use of MCFG_PALETTE_ENDIANNESS", tag());
m_paletteram.set_endianness(m_endianness);
}
}
diff --git a/src/emu/natkeyboard.h b/src/emu/natkeyboard.h
index d8cc9cfb8ff..41b33ace105 100644
--- a/src/emu/natkeyboard.h
+++ b/src/emu/natkeyboard.h
@@ -72,8 +72,8 @@ private:
// internal keyboard code information
struct keycode_map_entry
{
- std::array<ioport_field *, SHIFT_COUNT + 1> field;
- unsigned shift;
+ std::array<ioport_field *, SHIFT_COUNT + 1> field;
+ unsigned shift;
};
typedef std::unordered_map<char32_t, keycode_map_entry> keycode_map;
diff --git a/src/emu/video/generic.cpp b/src/emu/video/generic.cpp
index 44d8f124a38..b43c9d8fa9d 100644
--- a/src/emu/video/generic.cpp
+++ b/src/emu/video/generic.cpp
@@ -143,9 +143,9 @@ const gfx_layout gfx_16x16x4_packed_lsb =
GFXLAYOUT_RAW(gfx_16x16x8_raw, 16, 16, 16*8, 16*16*8);
/*
- 16x16; grouped of 4 8x8 tiles (row align)
- 0 1
- 2 3
+ 16x16; grouped of 4 8x8 tiles (row align)
+ 0 1
+ 2 3
*/
const gfx_layout gfx_8x8x4_row_2x2_group_packed_msb =
{
@@ -173,9 +173,9 @@ const gfx_layout gfx_8x8x4_row_2x2_group_packed_lsb =
};
/*
- 16x16; grouped of 4 8x8 tiles (col align)
- 0 2
- 1 3
+ 16x16; grouped of 4 8x8 tiles (col align)
+ 0 2
+ 1 3
*/
const gfx_layout gfx_8x8x4_col_2x2_group_packed_msb =
{