diff --git a/src/BossAlmo1.cpp b/src/BossAlmo1.cpp index 0204779a..4e3113a4 100644 --- a/src/BossAlmo1.cpp +++ b/src/BossAlmo1.cpp @@ -13,7 +13,7 @@ #include "Sound.h" #include "Triangle.h" -static void ActBossChar_Core_Face(NPCHAR *npc) +void ActBossChar_Core_Face(NPCHAR *npc) { RECT rect[4] = { {0, 0, 72, 112}, @@ -64,7 +64,7 @@ static void ActBossChar_Core_Face(NPCHAR *npc) npc->rect.bottom = npc->rect.top + npc->act_wait; } -static void ActBossChar_Core_Tail(NPCHAR *npc) +void ActBossChar_Core_Tail(NPCHAR *npc) { RECT rect[3] = { {72, 0, 160, 112}, @@ -114,7 +114,7 @@ static void ActBossChar_Core_Tail(NPCHAR *npc) npc->rect.bottom = npc->rect.top + npc->act_wait; } -static void ActBossChar_Core_Mini(NPCHAR *npc) +void ActBossChar_Core_Mini(NPCHAR *npc) { RECT rect[3] = { {256, 0, 320, 40}, @@ -228,7 +228,7 @@ static void ActBossChar_Core_Mini(NPCHAR *npc) npc->rect = rect[npc->ani_no]; } -static void ActBossChar_Core_Hit(NPCHAR *npc) +void ActBossChar_Core_Hit(NPCHAR *npc) { switch (npc->count1) { diff --git a/src/Ending.cpp b/src/Ending.cpp index 393ce405..1a6b421b 100644 --- a/src/Ending.cpp +++ b/src/Ending.cpp @@ -299,7 +299,7 @@ void ActionCredit(void) } // Parse credits -void ActionCredit_Read(void) +static void ActionCredit_Read(void) { int a, b, len; char text[40]; @@ -449,7 +449,7 @@ void ActionCredit_Read(void) } // Get number from text (4 digit) -int GetScriptNumber(const char *text) +static int GetScriptNumber(const char *text) { return (text[0] - '0') * 1000 + (text[1] - '0') * 100 +