diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-11-08 20:09:35 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-11-08 20:09:35 +0100 |
commit | f7ef93611cb2429ec3f1f5f77befcd1b5647be37 (patch) | |
tree | 37a4899bac07800f753c89d44c115b9f570455ed /source/squirrelbindings/SquirrelFunctions.cpp | |
parent | Hotfix for ThuGie's crash, with a sanity check in debug mode. (diff) | |
download | cuberite-f7ef93611cb2429ec3f1f5f77befcd1b5647be37.tar cuberite-f7ef93611cb2429ec3f1f5f77befcd1b5647be37.tar.gz cuberite-f7ef93611cb2429ec3f1f5f77befcd1b5647be37.tar.bz2 cuberite-f7ef93611cb2429ec3f1f5f77befcd1b5647be37.tar.lz cuberite-f7ef93611cb2429ec3f1f5f77befcd1b5647be37.tar.xz cuberite-f7ef93611cb2429ec3f1f5f77befcd1b5647be37.tar.zst cuberite-f7ef93611cb2429ec3f1f5f77befcd1b5647be37.zip |
Diffstat (limited to '')
-rw-r--r-- | source/squirrelbindings/SquirrelFunctions.cpp | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/source/squirrelbindings/SquirrelFunctions.cpp b/source/squirrelbindings/SquirrelFunctions.cpp index b6410ad2e..0e35f7361 100644 --- a/source/squirrelbindings/SquirrelFunctions.cpp +++ b/source/squirrelbindings/SquirrelFunctions.cpp @@ -1,13 +1,29 @@ #include "Globals.h"
+
+
+
+
+
+#ifdef USE_SQUIRREL
+
+
+
+
+
#include "SquirrelFunctions.h"
#include "SquirrelBindings.h"
-#ifdef USE_SQUIRREL
+
+
static HSQUIRRELVM squirrelvm = NULL;
+
+
+
+
SQInteger runtimeErrorHandler(HSQUIRRELVM a_VM)
{
const SQChar *sErr = 0;
@@ -67,4 +83,12 @@ void sqPrint(SQChar * text) LOGINFO("%s", text);
}
-#endif
\ No newline at end of file +
+
+
+
+#endif // USE_SQUIRREL
+
+
+
+
|