diff options
| author | 2016-06-24 07:55:10 -0400 | |
|---|---|---|
| committer | 2016-06-24 07:55:10 -0400 | |
| commit | 7509a56dc0cf8a380eada014167b8075fbcbcdc9 (patch) | |
| tree | ea1c000f85a04be37a3e3b43e9fb9f37d830c3d8 /src/emu/machine.cpp | |
| parent | 4ddfc6a6e4b8195b001dca2f574b7ab348e704ab (diff) | |
Incorporated cleanups requested by Vas Crabb
Diffstat (limited to 'src/emu/machine.cpp')
| -rw-r--r-- | src/emu/machine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index 18b8aeba0bf..ae797fc81d2 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -568,7 +568,7 @@ void running_machine::set_saveload_filename(const char *filename) // take into account the statename option const char *stateopt = options().state_name(); std::string statename = get_statename(stateopt); - m_saveload_pending_file = string_format("%s%s%s.sta", statename.c_str(), PATH_SEPARATOR, filename); + m_saveload_pending_file = string_format("%s%s%s.sta", statename, PATH_SEPARATOR, filename); } } |
