summaryrefslogtreecommitdiffstats
path: root/engine/include/flatland.hpp
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-25 02:54:54 +0100
committerNao Pross <naopross@thearcway.org>2019-01-25 02:54:54 +0100
commitf58dea71037dca847e373f6efbf75b6056f212ac (patch)
tree3b9b66379a583eb0b162418d037ec00b66e6bebc /engine/include/flatland.hpp
parentUpdate configure.py to default build libflatland.{so, a} (diff)
downloadflatland-f58dea71037dca847e373f6efbf75b6056f212ac.tar.gz
flatland-f58dea71037dca847e373f6efbf75b6056f212ac.zip
It compiles! Probably super broken, but compiles!
Diffstat (limited to 'engine/include/flatland.hpp')
-rw-r--r--engine/include/flatland.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/engine/include/flatland.hpp b/engine/include/flatland.hpp
index e01201f..331093b 100644
--- a/engine/include/flatland.hpp
+++ b/engine/include/flatland.hpp
@@ -28,10 +28,10 @@ struct flat_status
unsigned char video:1;
unsigned char audio:1;
unsigned char timer:1;
+ unsigned char events:1;
unsigned char joystick:1;
unsigned char controller:1;
unsigned char haptic:1;
- unsigned char events:1;
unsigned char error:1;
unsigned char running:1;
unsigned char loop:1;
@@ -66,10 +66,6 @@ flat_status flatland_status();
void load_flatland_status(const flat_status&);
-/* Common defined variables */
-
-extern float flatland_dt;
-
}
#endif