summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hnayayoi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hnayayoi.cpp')
-rw-r--r--src/mame/drivers/hnayayoi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/hnayayoi.cpp b/src/mame/drivers/hnayayoi.cpp
index 39c2081a0bf..64bfd0edb22 100644
--- a/src/mame/drivers/hnayayoi.cpp
+++ b/src/mame/drivers/hnayayoi.cpp
@@ -651,7 +651,7 @@ ROM_END
DRIVER_INIT_MEMBER(hnayayoi_state,hnfubuki)
{
- UINT8 *rom = memregion("gfx1")->base();
+ uint8_t *rom = memregion("gfx1")->base();
int len = memregion("gfx1")->bytes();
int i, j;
@@ -662,7 +662,7 @@ DRIVER_INIT_MEMBER(hnayayoi_state,hnfubuki)
{
for (j = 0; j < 0x10; j++)
{
- UINT8 t = rom[i + j + 0x10];
+ uint8_t t = rom[i + j + 0x10];
rom[i + j + 0x10] = rom[i + j + 0x20];
rom[i + j + 0x20] = t;
}