diff options
author | 2021-10-09 14:19:35 +1100 | |
---|---|---|
committer | 2021-10-09 14:21:08 +1100 | |
commit | 30dad180dd95191770e5ef1e29b096044b024c4f (patch) | |
tree | 12a1a6e4ba5d7188a38e1da217e0244f95c596e3 /src/frontend/mame/ui/selsoft.cpp | |
parent | 38082ccbee749d650ccea886ae376a5d1dec337c (diff) |
frontend: Fixed clone sorting; osd/strconv.cpp: The string_view treatment, and fixed a bug with to/from ANSI codepage.
Diffstat (limited to 'src/frontend/mame/ui/selsoft.cpp')
-rw-r--r-- | src/frontend/mame/ui/selsoft.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/selsoft.cpp b/src/frontend/mame/ui/selsoft.cpp index 8e48cbd51cb..a9d78968d64 100644 --- a/src/frontend/mame/ui/selsoft.cpp +++ b/src/frontend/mame/ui/selsoft.cpp @@ -218,7 +218,7 @@ public: } // sort array - std::collate<wchar_t> const &coll = std::use_facet<std::collate<wchar_t>>(std::locale()); + std::collate<wchar_t> const &coll = std::use_facet<std::collate<wchar_t> >(std::locale()); auto const compare_names = [&coll] (std::string const &x, std::string const &y) -> bool { |