mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
Changing 'bool iswild' to 'const bool iswild'
This commit is contained in:
parent
68c2d88d51
commit
1f7c2b6a4a
@ -258,7 +258,7 @@ const software_info *software_list_device::find(const std::string &look_for)
|
||||
if (look_for.empty())
|
||||
return nullptr;
|
||||
|
||||
bool iswild = look_for.find_first_of("*?") != std::string::npos;
|
||||
const bool iswild = look_for.find_first_of("*?") != std::string::npos;
|
||||
|
||||
// find a match (will cause a parse if needed when calling get_info)
|
||||
const auto &info_list = get_info();
|
||||
|
Loading…
Reference in New Issue
Block a user