Skip to content

Commit

Permalink
Make more variables static
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalh committed Jun 5, 2021
1 parent 2d919c7 commit 19d81a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game_patch/misc/character.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static FunHook<void()> skeleton_close_hook{
},
};

void skeleton_flush()
static void skeleton_flush()
{
auto it = skeletons.begin();
while (it != skeletons.end()) {
Expand Down Expand Up @@ -140,7 +140,7 @@ static CodeInjection character_delete_character_injection{
},
};

FunHook<void()> character_level_init_hook{
static FunHook<void()> character_level_init_hook{
0x0051D980,
[]() {
character_level_init_hook.call_target();
Expand Down

0 comments on commit 19d81a0

Please sign in to comment.