summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine.cpp
diff options
context:
space:
mode:
author Firehawke <Firehawke@users.noreply.github.com>2017-12-13 21:01:10 -0700
committer Firehawke <Firehawke@users.noreply.github.com>2017-12-13 21:01:10 -0700
commit54155441e9ba9941e85d80c4834a66376a11e791 (patch)
treeaa44bdaf0035cbe188d64c447f225f10f7d76d8d /src/emu/machine.cpp
parentf537428e5a40ba6dde8ca9bf0fe9ae6b1f189ac4 (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.cpp39
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();
}