mirror of
https://github.com/holub/mame
synced 2025-06-06 04:43:45 +03:00
windir.cpp, winrtdir.cpp: string_format calls need qualification now
This commit is contained in:
parent
87d8079cac
commit
11c30f91ac
@ -108,7 +108,7 @@ bool win_directory::open_impl(std::string const &dirname)
|
||||
assert(m_find == INVALID_HANDLE_VALUE);
|
||||
|
||||
// append \*.* to the directory name
|
||||
std::string dirfilter = string_format("%s\\*.*", dirname);
|
||||
std::string dirfilter = util::string_format("%s\\*.*", dirname);
|
||||
|
||||
// convert the path to TCHARs
|
||||
osd::text::tstring t_dirfilter = osd::text::to_tstring(dirfilter);
|
||||
|
@ -108,7 +108,7 @@ bool win_directory::open_impl(std::string const &dirname)
|
||||
assert(m_find == INVALID_HANDLE_VALUE);
|
||||
|
||||
// append \*.* to the directory name
|
||||
std::string dirfilter = string_format("%s\\*.*", dirname);
|
||||
std::string dirfilter = util::string_format("%s\\*.*", dirname);
|
||||
|
||||
// convert the path to TCHARs
|
||||
osd::text::tstring t_dirfilter = osd::text::to_tstring(dirfilter);
|
||||
|
Loading…
Reference in New Issue
Block a user