summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-02-27 18:54:32 +0100
committerTreeki <treeki@gmail.com>2012-02-27 18:54:32 +0100
commit21d7e41b006b88aa79821610661fefc8fe14b7ca (patch)
treed9abd10293781666afc31fc4af5b6de503e2867c /include
parente45c4a7a24a6a58804261d73c14f008bff1b5a68 (diff)
downloadkamek-21d7e41b006b88aa79821610661fefc8fe14b7ca.tar.gz
kamek-21d7e41b006b88aa79821610661fefc8fe14b7ca.zip
switching between multiple maps
Diffstat (limited to '')
-rwxr-xr-xinclude/game.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/game.h b/include/game.h
index 6b6a9bd..b22631f 100755
--- a/include/game.h
+++ b/include/game.h
@@ -24,6 +24,7 @@ inline T clamp(T value, T one, T two) { return (value < one) ? one : ((value > t
extern "C" {
int strlen(const char *str);
char *strcpy(char *dest, const char *src);
+int strncmp(const char *str1, const char *str2, int num);
float atan(float x);
float atan2(float y, float x);
@@ -2628,6 +2629,7 @@ extern int currentScreenSizeID;
extern float GlobalScreenWidth, GlobalScreenHeight;
+void DoSceneChange(u16 name, u32 sceneSettings, u32 unk);
extern u32 GlobalTickCount;