diff options
| author | Henny022p <info@henny022.de> | 2021-03-31 19:20:54 +0200 |
|---|---|---|
| committer | Henny022p <info@henny022.de> | 2021-03-31 19:20:54 +0200 |
| commit | fbdf9aed7b968493f98e8c0f504fe5fca2184900 (patch) | |
| tree | 02659458b7121bedde5a92524b4ca7b1310733e9 /include/object.h | |
| parent | 167fe388b68802bdf17d4017bff8e60b76bf372c (diff) | |
fix variable declarations not being extern causing linker warnings
Diffstat (limited to 'include/object.h')
| -rw-r--r-- | include/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/object.h b/include/object.h index 465ef064..145ae462 100644 --- a/include/object.h +++ b/include/object.h @@ -396,6 +396,6 @@ extern void ObjectBF(Entity*); extern void EnemyItem(Entity*); extern void ObjectC1(Entity*); -void (*const gObjectFunctions[194])(Entity*); +extern void (*const gObjectFunctions[194])(Entity*); #endif |
