summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dkong.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dkong.c')
-rw-r--r--src/mame/video/dkong.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/dkong.c b/src/mame/video/dkong.c
index f8a0aa13b0d..43514abc9ec 100644
--- a/src/mame/video/dkong.c
+++ b/src/mame/video/dkong.c
@@ -769,7 +769,7 @@ static void radarscp_draw_background(running_machine *machine, dkong_state *stat
UINT16 *pixel;
if (state->hardware_type == HARDWARE_TRS01)
- htable = memory_region(machine, RGNCLASS_GFX, "gfx4");
+ htable = memory_region(machine, "gfx4");
y = cliprect->min_y;
while (y <= cliprect->max_y)
@@ -793,8 +793,8 @@ static void radarscp_draw_background(running_machine *machine, dkong_state *stat
static TIMER_CALLBACK( scanline_callback )
{
dkong_state *state = machine->driver_data;
- const UINT8 *table = memory_region(machine, RGNCLASS_GFX, "gfx3");
- int table_len = memory_region_length(machine, RGNCLASS_GFX, "gfx3");
+ const UINT8 *table = memory_region(machine, "gfx3");
+ int table_len = memory_region_length(machine, "gfx3");
int x,y,offset;
UINT16 *pixel;
static int counter=0;
@@ -847,10 +847,10 @@ static void check_palette(running_machine *machine)
switch (newset)
{
case 0x00:
- palette_init_radarscp(machine, memory_region(machine, RGNCLASS_PROMS, "proms"));
+ palette_init_radarscp(machine, memory_region(machine, "proms"));
break;
case 0x01:
- palette_init_dkong2b(machine, memory_region(machine, RGNCLASS_PROMS, "proms"));
+ palette_init_dkong2b(machine, memory_region(machine, "proms"));
break;
}
}