summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/speedbal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/speedbal.cpp')
-rw-r--r--src/mame/drivers/speedbal.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/speedbal.cpp b/src/mame/drivers/speedbal.cpp
index 0f92ffc75a1..a4777576d2b 100644
--- a/src/mame/drivers/speedbal.cpp
+++ b/src/mame/drivers/speedbal.cpp
@@ -292,8 +292,8 @@ MACHINE_CONFIG_END
DRIVER_INIT_MEMBER(speedbal_state,speedbal)
{
// sprite tiles are in an odd order, rearrange to simplify video drawing function
- UINT8* rom = memregion("sprites")->base();
- std::vector<UINT8> temp(0x200*128);
+ uint8_t* rom = memregion("sprites")->base();
+ std::vector<uint8_t> temp(0x200*128);
for (int i=0;i<0x200;i++)
{
@@ -359,9 +359,9 @@ ROM_END
DRIVER_INIT_MEMBER(speedbal_state,musicbal)
{
- UINT8* rom = memregion("maincpu")->base();
+ uint8_t* rom = memregion("maincpu")->base();
- const UINT8 xorTable[8] = {0x05, 0x06, 0x84, 0x84, 0x00, 0x87, 0x84, 0x84}; // XORs affecting bits #0, #1, #2 & #7
+ const uint8_t xorTable[8] = {0x05, 0x06, 0x84, 0x84, 0x00, 0x87, 0x84, 0x84}; // XORs affecting bits #0, #1, #2 & #7
const int swapTable[4][4] = { // 4 possible swaps affecting bits #0, #1, #2 & #7
{1,0,7,2},
{2,7,0,1},