summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/clifront.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-20 21:32:11 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-20 21:32:11 +0100
commitabb7f223b3bb4e16fa40f2c262aebce27091960e (patch)
treef575d9ebd5544f9231ff64d11ca242603236f410 /src/emu/clifront.cpp
parentd5464a5799c26e9d3100dc0fa46dcdb16cb0812e (diff)
Revert "Fix for hang, emu_options::add_slot_options was changed, other things are just cleanup (nw)"
This reverts commit 841a55985e60a16f745422fb9aa06c420d8be8ba.
Diffstat (limited to 'src/emu/clifront.cpp')
-rw-r--r--src/emu/clifront.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/clifront.cpp b/src/emu/clifront.cpp
index 85593abe260..21205e2beac 100644
--- a/src/emu/clifront.cpp
+++ b/src/emu/clifront.cpp
@@ -648,7 +648,7 @@ void cli_frontend::listslots(const char *gamename)
{
if (slot->fixed()) continue;
// output the line, up to the list of extensions
- printf("%-13s%-10s ", first ? drivlist.driver().name : "", std::string(slot->device().tag()).substr(1).c_str());
+ printf("%-13s%-10s ", first ? drivlist.driver().name : "", std::string(slot->device().tag()).erase(0,1).c_str());
bool first_option = true;