summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wolfpack.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/drivers/wolfpack.cpp
parent333bff8de64dfaeb98134000412796b4fdef970b (diff)
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/mame/drivers/wolfpack.cpp')
-rw-r--r--src/mame/drivers/wolfpack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/wolfpack.cpp b/src/mame/drivers/wolfpack.cpp
index 2f3eee098d8..dc6beaf56e0 100644
--- a/src/mame/drivers/wolfpack.cpp
+++ b/src/mame/drivers/wolfpack.cpp
@@ -55,7 +55,7 @@ CUSTOM_INPUT_MEMBER(wolfpack_state::wolfpack_dial_r)
READ8_MEMBER(wolfpack_state::wolfpack_misc_r)
{
- UINT8 val = 0;
+ uint8_t val = 0;
/* BIT0 => SPEECH BUSY */
/* BIT1 => COMP SIREN */
@@ -216,7 +216,7 @@ static const gfx_layout tile_layout =
0x80
};
-static const UINT32 ship_layout_xoffset[64] =
+static const uint32_t ship_layout_xoffset[64] =
{
0x04, 0x05, 0x06, 0x07, 0x0c, 0x0d, 0x0e, 0x0f,
0x14, 0x15, 0x16, 0x17, 0x1c, 0x1d, 0x1e, 0x1f,
@@ -244,7 +244,7 @@ static const gfx_layout ship_layout =
nullptr
};
-static const UINT32 pt_layout_xoffset[64] =
+static const uint32_t pt_layout_xoffset[64] =
{
0x3f, 0x3f, 0x3e, 0x3e, 0x3d, 0x3d, 0x3c, 0x3c,
0x37, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x34,