diff options
author | 2017-12-13 21:01:10 -0700 | |
---|---|---|
committer | 2017-12-13 21:01:10 -0700 | |
commit | 54155441e9ba9941e85d80c4834a66376a11e791 (patch) | |
tree | aa44bdaf0035cbe188d64c447f225f10f7d76d8d /src/emu/machine.cpp | |
parent | f537428e5a40ba6dde8ca9bf0fe9ae6b1f189ac4 (diff) |
Revert "Merge branch 'master' of https://github.com/mamedev/mame"
This reverts commit f537428e5a40ba6dde8ca9bf0fe9ae6b1f189ac4, reversing
changes made to 0d70d798107d4e4e8fb9f230410aeb1e888d65c5.
Diffstat (limited to 'src/emu/machine.cpp')
-rw-r--r-- | src/emu/machine.cpp | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index f55bfb6c5ad..fa6375ef937 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -683,42 +683,6 @@ void running_machine::immediate_load(const char *filename) //------------------------------------------------- -// rewind_capture - capture and append a new -// state to the rewind list -//------------------------------------------------- - -void running_machine::rewind_capture() -{ - if (m_save.rewind()->enabled()) - m_save.rewind()->capture(); -} - - -//------------------------------------------------- -// rewind_step - a single step back through -// rewind states -//------------------------------------------------- - -void running_machine::rewind_step() -{ - if (m_save.rewind()->enabled()) - m_save.rewind()->step(); -} - - -//------------------------------------------------- -// rewind_invalidate - mark all the future rewind -// states as invalid -//------------------------------------------------- - -void running_machine::rewind_invalidate() -{ - if (m_save.rewind()->enabled()) - m_save.rewind()->invalidate(); -} - - -//------------------------------------------------- // pause - pause the system //------------------------------------------------- @@ -757,10 +721,7 @@ void running_machine::resume() void running_machine::toggle_pause() { if (paused()) - { - rewind_invalidate(); resume(); - } else pause(); } |