Fix ambiguity.

This commit is contained in:
Malkierian 2024-05-06 11:13:30 -07:00
parent f354460d04
commit 89f119c566

View File

@ -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));
});