1
0
mirror of synced 2025-02-02 12:27:25 +01:00

fix: Missing emscripten include

This commit is contained in:
WerWolv 2024-12-25 16:19:50 +01:00
parent 6faefed4f4
commit 93f6ab25e6

View File

@ -6,6 +6,10 @@
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
#if defined(OS_WEB)
#include <emscripten.h>
#endif
namespace hex { namespace hex {
static AutoReset<std::unordered_map<std::string, std::unordered_map<std::string, std::unique_ptr<Achievement>>>> s_achievements; static AutoReset<std::unordered_map<std::string, std::unordered_map<std::string, std::unique_ptr<Achievement>>>> s_achievements;