diff options
author | 2012-01-03 00:21:13 +0000 | |
---|---|---|
committer | 2012-01-03 00:21:13 +0000 | |
commit | 64f1231c6300b144d946cb5530e40c288c43791f (patch) | |
tree | 92abaefa81552cb9ad78ff7c142e0fff5f9f7bba /src/emu/softlist.c | |
parent | 8b492b8d80c5998f1e695706dfaa1bb1d35b9263 (diff) |
Removed old C-based interface to astrings. astring exists only as
a class now. Updated all stragglers (mostly tools) to use the class
form. [Aaron Giles]
Diffstat (limited to 'src/emu/softlist.c')
-rw-r--r-- | src/emu/softlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/softlist.c b/src/emu/softlist.c index b084c5403fb..9a483dc9788 100644 --- a/src/emu/softlist.c +++ b/src/emu/softlist.c @@ -1911,7 +1911,7 @@ void validate_softlists(emu_options &options) } /* check for duplicate descriptions */ - if (descriptions.add(astring(swinfo->longname).tolower().cstr(), swinfo, FALSE) == TMERR_DUPLICATE) + if (descriptions.add(astring(swinfo->longname).makelower().cstr(), swinfo, FALSE) == TMERR_DUPLICATE) { mame_printf_error("%s: %s is a duplicate description (%s)\n", list->file->filename(), swinfo->longname, swinfo->shortname); error = TRUE; |