summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xinclude/game.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/game.h b/include/game.h
index 3691fc7..61042bf 100755
--- a/include/game.h
+++ b/include/game.h
@@ -22,6 +22,7 @@ inline T clamp(T value, T one, T two) { return (value < one) ? one : ((value > t
#define M_PI_2 (M_PI / 2)
extern "C" {
+int wcslen(const wchar_t *str);
int strlen(const char *str);
char *strcpy(char *dest, const char *src);
int strncmp(const char *str1, const char *str2, int num);
@@ -1073,7 +1074,7 @@ public:
TileRenderer();
~TileRenderer();
- TileRenderer *list1, *list2;
+ TileRenderer *previous, *next;
u16 tileNumber;
u8 unkFlag, someBool;
float x, y, z;
@@ -1102,8 +1103,6 @@ public:
u8 getUnkByte();
- bool isInList() { return (list1 != 0); }
-
class List {
public:
u32 count;
@@ -1643,6 +1642,7 @@ public:
fBase_c *GetNext();
bool hasUninitialisedProcesses(); // 80162B60
+ fBase_c *findNextUninitialisedProcess();
};
class dBase_c : public fBase_c {