mirror of
https://github.com/holub/mame
synced 2025-05-25 23:35:26 +03:00
Moved image_postdevice_init call to proper place (no whatsnew)
This commit is contained in:
parent
4849299a0d
commit
58c2e62440
@ -1420,9 +1420,6 @@ void running_machine::start()
|
|||||||
// start up the devices
|
// start up the devices
|
||||||
m_devicelist.start_all();
|
m_devicelist.start_all();
|
||||||
|
|
||||||
// finish image devices init process
|
|
||||||
image_postdevice_init(this);
|
|
||||||
|
|
||||||
// call the game driver's init function
|
// call the game driver's init function
|
||||||
// this is where decryption is done and memory maps are altered
|
// this is where decryption is done and memory maps are altered
|
||||||
// so this location in the init order is important
|
// so this location in the init order is important
|
||||||
@ -1430,6 +1427,9 @@ void running_machine::start()
|
|||||||
if (m_game.driver_init != NULL)
|
if (m_game.driver_init != NULL)
|
||||||
(*m_game.driver_init)(this);
|
(*m_game.driver_init)(this);
|
||||||
|
|
||||||
|
// finish image devices init process
|
||||||
|
image_postdevice_init(this);
|
||||||
|
|
||||||
// start the video and audio hardware
|
// start the video and audio hardware
|
||||||
video_init(this);
|
video_init(this);
|
||||||
tilemap_init(this);
|
tilemap_init(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user