2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-20 04:25:23 +00:00

Various minor fixes

This commit is contained in:
2023-01-22 14:22:28 -08:00
parent 292e655737
commit 763fcdbd9c
7 changed files with 47 additions and 7 deletions

View File

@@ -3,6 +3,7 @@
#include <memory>
#include <string>
#include <unordered_map>
#include <map>
#include <vector>
#include "Runtime/ConsoleVariables/CVar.hpp"
@@ -109,7 +110,7 @@ private:
void restoreDeveloper(bool oldDeveloper);
std::unordered_map<std::string, std::unique_ptr<CVar>> m_cvars;
std::unordered_map<std::string, std::string> m_deferedCVars;
std::map<std::string, std::string> m_deferedCVars;
std::vector<StoreCVar::CVar> loadCVars(const std::string& filename) const;
};