diff --git a/src/system/init.c b/src/system/init.c index 617e89e..e9651c6 100644 --- a/src/system/init.c +++ b/src/system/init.c @@ -133,6 +133,7 @@ void initGameSystem(void) initStats, initModalDialog, initBackground, + initStars, initControls }; diff --git a/src/system/init.h b/src/system/init.h index 78133cb..6d6dd05 100644 --- a/src/system/init.h +++ b/src/system/init.h @@ -70,6 +70,7 @@ extern void createSaveFolder(void); extern void setLanguage(char *applicationName, char *languageCode); extern char *getLookupName(char *prefix, long num); extern long lookup(char *name); +extern void initStars(void); extern App app; extern Colors colors;