diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | cInput.h | 2 | ||||
-rw-r--r-- | cObjectHandler.cpp | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..396992a --- /dev/null +++ b/.travis.yml @@ -0,0 +1 @@ +language: cpp @@ -30,7 +30,7 @@ struct sInputEvent unsigned int type; unsigned char c; unsigned int b; - unsigned int x, y; + int x, y; }; class cInput diff --git a/cObjectHandler.cpp b/cObjectHandler.cpp index d88af92..dba0b77 100644 --- a/cObjectHandler.cpp +++ b/cObjectHandler.cpp @@ -228,4 +228,6 @@ int cObjectHandler::rotateWiremesh(int _mesh, sCoord3d _angle) return 1; meshes[_mesh]->rotate(_angle); + + return 0; } |