use new log fmt wrappers

This commit is contained in:
TakaRikka
2026-08-05 00:43:23 -07:00
parent 027e23d2e7
commit 0ed984a863
4 changed files with 7 additions and 18 deletions
+3 -2
View File
@@ -6,7 +6,6 @@
#include "d/d_item.h"
#include "d/d_item_data.h"
#include "f_op/f_op_actor_mng.h"
#include "fmt/format.h"
#include "item_ids.h"
#include "randomizer_context.hpp"
#include "session.hpp"
@@ -14,6 +13,8 @@
#include "utilities.h"
#include "verify_item_functions.h"
#include <mods/svc/log.hpp>
bool playerIsInRoomStage(s32 room, const char* stage)
{
// Only check room if it is valid
@@ -713,7 +714,7 @@ int getStageSaveId(int id) {
case 42: // F_SP102 (Title Screen / King Bulblin 1)
return 0xFF;
default:
randomizer::session::LogWarn(fmt::format("Failed to find Save Id for ID: {}" , id).c_str());
mods::log::warn("Failed to find Save Id for ID: {}" , id);
return -1;
}
}