aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/common.h1
-rw-r--r--include/world.h4
2 files changed, 3 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h
index 8552720..22ecb22 100644
--- a/include/common.h
+++ b/include/common.h
@@ -201,5 +201,6 @@ unsigned int millis(void);
#endif // __WIN32__
int getdir(const char *dir, std::vector<std::string> &files);
+void strVectorSortAlpha(std::vector<std::string> *v);
#endif // COMMON_H
diff --git a/include/world.h b/include/world.h
index 0e85462..28d7a09 100644
--- a/include/world.h
+++ b/include/world.h
@@ -157,8 +157,8 @@ public:
* ui.cpp for world jumping.
*/
- World *toLeft,
- *toRight,
+ World **toLeft,
+ **toRight,
*behind,
*infront;