diff options
author | 2011-03-28 09:10:17 +0000 | |
---|---|---|
committer | 2011-03-28 09:10:17 +0000 | |
commit | af071893a63485d60b1c52d9f15501d2213c8e5e (patch) | |
tree | 16635e21ef67490e0e585e45e4c8698ff520d073 /src/emu/drawgfx.c | |
parent | 58f70e918446d6940d8192adc240b4d60be66c3d (diff) |
Cleanup of machine.h. Shuffled some fields around, and moved several
to private member variables with accessors:
machine->m_respool ==> machine->respool()
machine->config ==> machine->config()
machine->gamedrv ==> machine->system()
machine->m_regionlist ==> machine->first_region()
machine->sample_rate ==> machine->sample_rate()
Also converted internal lists to use simple_list.
Diffstat (limited to 'src/emu/drawgfx.c')
-rw-r--r-- | src/emu/drawgfx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/drawgfx.c b/src/emu/drawgfx.c index 3132039aa11..c5701def17e 100644 --- a/src/emu/drawgfx.c +++ b/src/emu/drawgfx.c @@ -81,7 +81,7 @@ INLINE INT32 normalize_yscroll(bitmap_t *bitmap, INT32 yscroll) void gfx_init(running_machine *machine) { - const gfx_decode_entry *gfxdecodeinfo = machine->config->m_gfxdecodeinfo; + const gfx_decode_entry *gfxdecodeinfo = machine->config().m_gfxdecodeinfo; int curgfx; /* skip if nothing to do */ |