Skip to content

Commit 1becf28

Browse files
committed
2 parents 48b0c15 + f5cd954 commit 1becf28

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

include/RE/B/BSStringPool.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ namespace RE
6969

7070
static void GetEntry(BSStringPool::Entry*& a_result, const char* a_string, bool a_caseSensitive)
7171
{
72-
using func_t = void(*)(BSStringPool::Entry*&, const char*, bool);
72+
using func_t = void (*)(BSStringPool::Entry*&, const char*, bool);
7373
static REL::Relocation<func_t> func{ ID::BSStringPool::GetEntry };
7474
func(a_result, a_string, a_caseSensitive);
7575
}
7676

7777
static void GetEntry(BSStringPool::Entry*& a_result, const wchar_t* a_string, bool a_caseSensitive)
7878
{
79-
using func_t = void(*)(BSStringPool::Entry*&, const wchar_t*, bool);
79+
using func_t = void (*)(BSStringPool::Entry*&, const wchar_t*, bool);
8080
static REL::Relocation<func_t> func{ ID::BSStringPool::GetEntryW };
8181
func(a_result, a_string, a_caseSensitive);
8282
}

include/RE/IDs.h

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ namespace RE::ID
1414

1515
namespace Actor
1616
{
17-
inline constexpr REL::ID EvaluatePackage{ 0 }; // 150640
18-
inline constexpr REL::ID GetActorKnowledge{ 0 }; // 150669
19-
inline constexpr REL::ID IsHostileToActor{ 0 }; // 150777
20-
inline constexpr REL::ID IsJumping{ 0 }; // 150985
21-
inline constexpr REL::ID IsOverEncumbered{ 0 }; // 150999
22-
inline constexpr REL::ID IsSneaking{ 0 }; // 151014
17+
inline constexpr REL::ID EvaluatePackage{ 0 }; // 150640
18+
inline constexpr REL::ID GetActorKnowledge{ 0 }; // 150669
19+
inline constexpr REL::ID IsHostileToActor{ 0 }; // 150777
20+
inline constexpr REL::ID IsJumping{ 0 }; // 150985
21+
inline constexpr REL::ID IsOverEncumbered{ 0 }; // 150999
22+
inline constexpr REL::ID IsSneaking{ 0 }; // 151014
2323
inline constexpr REL::ID SetSkinTone{ 97400 };
2424
inline constexpr REL::ID UpdateAppearance{ 101306 };
2525
inline constexpr REL::ID UpdateChargenAppearance{ 97399 };
@@ -247,8 +247,8 @@ namespace RE::ID
247247
namespace BSNonReentrantSpinLock
248248
{
249249
inline constexpr REL::ID Lock{ 37396 };
250-
inline constexpr REL::ID TryLock{ 0 }; // 74235 - inlined?
251-
inline constexpr REL::ID Unlock{ 0 }; // 73895 - inlined?
250+
inline constexpr REL::ID TryLock{ 0 }; // 74235 - inlined?
251+
inline constexpr REL::ID Unlock{ 0 }; // 73895 - inlined?
252252
}
253253

254254
namespace BSPointerHandleManagerInterface
@@ -2311,13 +2311,13 @@ namespace RE::ID
23112311
inline constexpr REL::ID GetSpaceshipPilot{ 0 }; // 173834
23122312
inline constexpr REL::ID GetValue{ 0 }; // 107605
23132313
inline constexpr REL::ID HasKeyword{ 42794 };
2314-
inline constexpr REL::ID IsCrimeToActivate{ 0 }; // 106755
2314+
inline constexpr REL::ID IsCrimeToActivate{ 0 }; // 106755
23152315
inline constexpr REL::ID IsInSpace{ 63482 };
23162316
inline constexpr REL::ID IsInSpaceship{ 119881 };
2317-
inline constexpr REL::ID IsObjectEquipped{ 0 }; // 106991
2318-
inline constexpr REL::ID IsSpaceshipDocked{ 0 }; // 174146
2319-
inline constexpr REL::ID IsSpaceshipLanded{ 0 }; // 173880
2320-
inline constexpr REL::ID WornHasKeyword{ 0 }; // 106992
2317+
inline constexpr REL::ID IsObjectEquipped{ 0 }; // 106991
2318+
inline constexpr REL::ID IsSpaceshipDocked{ 0 }; // 174146
2319+
inline constexpr REL::ID IsSpaceshipLanded{ 0 }; // 173880
2320+
inline constexpr REL::ID WornHasKeyword{ 0 }; // 106992
23212321
}
23222322

23232323
namespace TESPickNewIdleEvent
@@ -2592,5 +2592,5 @@ namespace RE::ID
25922592
inline constexpr REL::ID Net_SockadrToNetadr{ 0 }; // 211262
25932593
inline constexpr REL::ID NET_WaitForData{ 0 }; // 211263
25942594
inline constexpr REL::ID RTDynamicCast{ 184372 };
2595-
inline constexpr REL::ID Sys_InitNetworking{ 0 }; // 211265
2595+
inline constexpr REL::ID Sys_InitNetworking{ 0 }; // 211265
25962596
}

0 commit comments

Comments
 (0)