[XAM] Fixed issue with Content not being close due to upper-lower characters difference.

- Added string_key_insensitive
This commit is contained in:
Gliniak
2025-08-06 22:22:01 +02:00
parent 10f2b5ebfc
commit e9b2464254
3 changed files with 58 additions and 10 deletions

View File

@@ -211,7 +211,7 @@ class ContentManager {
// TODO(benvanik): remove use of global lock, it's bad here!
xe::global_critical_region global_critical_region_;
std::unordered_map<string_key, ContentPackage*> open_packages_;
std::unordered_map<string_key_insensitive, ContentPackage*> open_packages_;
};
} // namespace xam