diff options
Diffstat (limited to 'src/emu/driver.c')
-rw-r--r-- | src/emu/driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/driver.c b/src/emu/driver.c index 901f4587cc3..399a30c15c9 100644 --- a/src/emu/driver.c +++ b/src/emu/driver.c @@ -75,7 +75,7 @@ void driver_device::static_set_game(device_t &device, const game_driver &game) // and set the search path to include all parents driver.m_searchpath = game.name; for (int parent = driver_list::clone(game); parent != -1; parent = driver_list::clone(parent)) - driver.m_searchpath.cat(";").cat(driver_list::driver(parent).name); + driver.m_searchpath.append(";").append(driver_list::driver(parent).name); } |