diff options
author | 2016-06-29 08:34:30 +0200 | |
---|---|---|
committer | 2016-06-29 08:34:30 +0200 | |
commit | 63f9a01f8c5d43b9cfe68c2d401a84647d19c10e (patch) | |
tree | a1f1874aa84850bddbebd2b0e0bfc3e1c77ce8c4 /src/devices/imagedev/cassette.cpp | |
parent | 1f6f1bfd6cfb748d9c5e159d6bd014bab8d30944 (diff) |
Cleanup and version bumpmame0175
Diffstat (limited to 'src/devices/imagedev/cassette.cpp')
-rw-r--r-- | src/devices/imagedev/cassette.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/imagedev/cassette.cpp b/src/devices/imagedev/cassette.cpp index 5826f0abf58..313ef6b42a2 100644 --- a/src/devices/imagedev/cassette.cpp +++ b/src/devices/imagedev/cassette.cpp @@ -359,7 +359,7 @@ void cassette_image_device::call_unload() //------------------------------------------------- // display a small tape animation, with the -// current position in the tape image +// current position in the tape image //------------------------------------------------- std::string cassette_image_device::call_display() @@ -389,10 +389,10 @@ std::string cassette_image_device::call_display() ? u8"\u25BA" : u8"\u25CF"; - // Since you can have anything in a BDF file, we will use crude ascii characters instead + // Since you can have anything in a BDF file, we will use crude ascii characters instead result = string_format("%s %s %02d:%02d (%04d) [%02d:%02d (%04d)]", - shapes[n], // animation - status_icon, // play or record + shapes[n], // animation + status_icon, // play or record ((int)position / 60), ((int)position % 60), (int)position, |