Moved image_postdevice_init call to proper place (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2010-06-28 11:04:20 +00:00
parent 4849299a0d
commit 58c2e62440

View File

@ -1420,9 +1420,6 @@ void running_machine::start()
// start up the devices
m_devicelist.start_all();
// finish image devices init process
image_postdevice_init(this);
// call the game driver's init function
// this is where decryption is done and memory maps are altered
// so this location in the init order is important
@ -1430,6 +1427,9 @@ void running_machine::start()
if (m_game.driver_init != NULL)
(*m_game.driver_init)(this);
// finish image devices init process
image_postdevice_init(this);
// start the video and audio hardware
video_init(this);
tilemap_init(this);