Use std::map instead of std::unordered_map for data that will be serialized

This commit is contained in:
ahm3dgg
2026-01-09 03:09:42 +02:00
parent 833fd610da
commit 8481cdfb5d
6 changed files with 18 additions and 14 deletions

View File

@@ -34,7 +34,7 @@
struct emulator_settings;
struct application_settings;
using knowndlls_map = std::unordered_map<std::u16string, section>;
using knowndlls_map = std::map<std::u16string, section>;
struct process_context
{
struct callbacks