From f63148b735f7c8978da124b83cb4bba9261d009d Mon Sep 17 00:00:00 2001 From: Nathan Woods Date: Sun, 19 Jun 2016 11:36:48 -0400 Subject: [PATCH] "game" ==> "machine" --- src/emu/machine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index 778403ef8a4..907231f0cfb 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -844,7 +844,7 @@ void running_machine::handle_saveload() break; case STATERR_INVALID_HEADER: - popmessage("Error: Unable to %s state due to an invalid header. Make sure the save state is correct for this game.", opname); + popmessage("Error: Unable to %s state due to an invalid header. Make sure the save state is correct for this machine.", opname); break; case STATERR_READ_ERROR: @@ -857,7 +857,7 @@ void running_machine::handle_saveload() case STATERR_NONE: if (!(m_system.flags & MACHINE_SUPPORTS_SAVE)) - popmessage("State successfully %s.\nWarning: Save states are not officially supported for this game.", opnamed); + popmessage("State successfully %s.\nWarning: Save states are not officially supported for this machine.", opnamed); else popmessage("State successfully %s.", opnamed); break;