summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimponic <loganthebean222@gmail.com>2020-08-15 15:59:31 -0600
committerSimponic <loganthebean222@gmail.com>2020-08-15 15:59:31 -0600
commitee3af6b1f0e2ce6b8f27f7f4e33703cca6aaa876 (patch)
tree1a4bf5ac8ac895c7ffd66fd2b2736f5add44ebb5 /include
parent3020917b0b1b03acb52cf9c26a45132c73715de3 (diff)
downloadgeometry-dash-gba-ee3af6b1f0e2ce6b8f27f7f4e33703cca6aaa876.tar.gz
geometry-dash-gba-ee3af6b1f0e2ce6b8f27f7f4e33703cca6aaa876.zip
Optimized level-loading a bit
Diffstat (limited to 'include')
-rw-r--r--include/map.h4
-rw-r--r--include/playerObject.h1
2 files changed, 2 insertions, 3 deletions
diff --git a/include/map.h b/include/map.h
index 1bef313..e81f190 100644
--- a/include/map.h
+++ b/include/map.h
@@ -1,8 +1,8 @@
#include "types.h"
+#include <string.h>
#ifndef MAP_H
#define MAP_H
-extern const int map1[9][20];
-
+extern const int map1[9][40];
#endif // MAP_H
diff --git a/include/playerObject.h b/include/playerObject.h
index acfadbc..49f6011 100644
--- a/include/playerObject.h
+++ b/include/playerObject.h
@@ -29,5 +29,4 @@ void applyGravity();
void scalePlayer();
void updatePlayer();
-
#endif // PLAYEROBJECT_H