summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Osso <mesgnet@yahoo.it>2014-12-19 18:14:59 +0100
committer Osso <mesgnet@yahoo.it>2014-12-19 18:14:59 +0100
commitb6cac0342ba5eb84e0ced61e0069810c871ac0cb (patch)
tree50fcb2ebd237d2c6df2fc57e768ff01294547999
parent8644c3686b46b96d278964c3e05c04c18cbd124d (diff)
machine.c: the majority has spoken (nw)
-rw-r--r--src/emu/machine.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/machine.c b/src/emu/machine.c
index ff0831901db..76855efad96 100644
--- a/src/emu/machine.c
+++ b/src/emu/machine.c
@@ -256,10 +256,8 @@ void running_machine::start()
save().save_item(NAME(m_watchdog_enabled));
save().save_item(NAME(m_watchdog_counter));
- // we should save the random seed or save states might be broken in drivers that use the rand() method
- // but for the time being we won't, since it would invalidate all the save states from previous MAME versions
- // to be re-enabled if/when MAME save system becomes more flexible
- // save().save_item(NAME(m_rand_seed));
+ // save the random seed or save states might be broken in drivers that use the rand() method
+ save().save_item(NAME(m_rand_seed));
// initialize image devices
image_init(*this);