Previous 199869 Revisions Next

r33952 Friday 19th December, 2014 at 06:21:58 UTC by Osso
machine.c: invalidating all save states from previous versions is not a good trade-off for fixing a few games that regressed (nw)
[src/emu]machine.c

trunk/src/emu/machine.c
r242463r242464
256256   save().save_item(NAME(m_watchdog_enabled));
257257   save().save_item(NAME(m_watchdog_counter));
258258   
259   // save the random seed or save states might be broken in drivers that use the rand() method
260   save().save_item(NAME(m_rand_seed));
259   // we should save the random seed or save states might be broken in drivers that use the rand() method
260   // but for the time being we won't, since it would invalidate all the save states from previous MAME versions
261   // to be re-enabled if/when MAME save system becomes more flexible
262   // save().save_item(NAME(m_rand_seed));
261263   
262264   // initialize image devices
263265   image_init(*this);


Previous 199869 Revisions Next


© 1997-2024 The MAME Team