Skip to content

Commit

Permalink
fix: remove FMT_STRING from BSScriptUtil.h (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
Deweh authored Jul 25, 2024
1 parent 9debf70 commit 9dd8a0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/RE/B/BSScriptUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ namespace RE::BSScript
!vm->CreateStruct(name, _proxy) ||
!_proxy) {
SFSE::log::error(
FMT_STRING("failed to create structure of type \"{}\""),
"failed to create structure of type \"{}\"",
name);
assert(false);
}
Expand All @@ -92,7 +92,7 @@ namespace RE::BSScript

if (!a_quiet) {
SFSE::log::warn(
FMT_STRING("failed to find var \"{}\" on structure \"{}\""),
"failed to find var \"{}\" on structure \"{}\"",
a_name,
name);
}
Expand All @@ -114,7 +114,7 @@ namespace RE::BSScript
}

SFSE::log::warn(
FMT_STRING("failed to pack var \"{}\" on structure \"{}\""),
"failed to pack var \"{}\" on structure \"{}\"",
a_name,
name);
return false;
Expand Down Expand Up @@ -1077,7 +1077,7 @@ namespace RE::BSScript

if (!success) {
SFSE::log::warn(
FMT_STRING("failed to register method \"{}\" on object \"{}\""),
"failed to register method \"{}\" on object \"{}\"",
a_function,
a_object);
}
Expand Down

0 comments on commit 9dd8a0d

Please sign in to comment.