diff options
author | 2011-03-28 09:10:17 +0000 | |
---|---|---|
committer | 2011-03-28 09:10:17 +0000 | |
commit | af071893a63485d60b1c52d9f15501d2213c8e5e (patch) | |
tree | 16635e21ef67490e0e585e45e4c8698ff520d073 /src/osd/sdl/drawogl.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/osd/sdl/drawogl.c')
-rw-r--r-- | src/osd/sdl/drawogl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/sdl/drawogl.c b/src/osd/sdl/drawogl.c index ecadb7b58b5..c2a697e2893 100644 --- a/src/osd/sdl/drawogl.c +++ b/src/osd/sdl/drawogl.c @@ -1206,7 +1206,7 @@ static int drawogl_window_draw(sdl_window_info *window, UINT32 dc, int update) // figure out if we're vector scrnum = is_vector = 0; - for (screen = window->machine->config->first_screen(); screen != NULL; screen = screen->next_screen()) + for (screen = window->machine->config().first_screen(); screen != NULL; screen = screen->next_screen()) { if (scrnum == window->index) { |