From 89f119c566075cfceed104223a6254e2c60313eb Mon Sep 17 00:00:00 2001 From: Malkierian Date: Mon, 6 May 2024 11:13:30 -0700 Subject: [PATCH] Fix ambiguity. --- soh/soh/SaveManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/SaveManager.cpp b/soh/soh/SaveManager.cpp index a3b2ff9a5..0aaf32e7c 100644 --- a/soh/soh/SaveManager.cpp +++ b/soh/soh/SaveManager.cpp @@ -445,7 +445,7 @@ void SaveManager::LoadRandomizerVersion3() { SaveManager::Instance->LoadArray("hintLocations", RH_MAX, [&](size_t i) { auto hint = RandomizerHint(i); - nlohmann::ordered_json json; + nlohmann::json json; SaveManager::Instance->LoadData("", json); randoContext->AddHint(hint, Rando::Hint(hint, json)); });