From 9198c2bd58d31310a324ad0180c57e503c630d0f Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sat, 19 Jan 2019 17:34:43 +1100 Subject: More UI stuff: * Split up the different parts of ICO loading in the menus (locating files, scaling, drawing, etc.) * Added icon support to software selection menu * Added support for more ICO file variants, including PNG-in-ICO (new DIB parser is overkill for ICO but I can factor it out for BMP loading at some point) * Added favourites filter for software menus - includes software that's favourited on any system, so GBC includes DMG favourties and vice versa * Eliminated unnecessary member variables and O(n) walks in software selection menu * Made the menus' cached texture structures a bit more efficient --- src/emu/fileio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/emu/fileio.cpp') diff --git a/src/emu/fileio.cpp b/src/emu/fileio.cpp index 3ec686266c8..bbd1d931f30 100644 --- a/src/emu/fileio.cpp +++ b/src/emu/fileio.cpp @@ -96,7 +96,7 @@ bool path_iterator::next(std::string &buffer, const char *name) if (name) { // compute the full pathname - if (!buffer.empty() && (*buffer.rbegin() != *PATH_SEPARATOR)) + if (!buffer.empty() && !util::is_directory_separator(buffer.back())) buffer.append(PATH_SEPARATOR); buffer.append(name); } -- cgit v1.2.3-70-g09d2