diff options
author | Reimar <Reimar@Leike.name> | 2014-12-02 22:59:07 +0100 |
---|---|---|
committer | Reimar <Reimar@Leike.name> | 2014-12-02 22:59:07 +0100 |
commit | cd89b5b3fc2d25b401fb8d6dc6ea4e0337e28fa2 (patch) | |
tree | 92cda2c2122ad0cd61eb086643c1f0606bee2b9f | |
parent | e777b111586e0d049a9e2265f2ff1deec1689c3f (diff) | |
download | SpaceCannon-cd89b5b3fc2d25b401fb8d6dc6ea4e0337e28fa2.tar SpaceCannon-cd89b5b3fc2d25b401fb8d6dc6ea4e0337e28fa2.tar.gz SpaceCannon-cd89b5b3fc2d25b401fb8d6dc6ea4e0337e28fa2.tar.bz2 SpaceCannon-cd89b5b3fc2d25b401fb8d6dc6ea4e0337e28fa2.tar.xz SpaceCannon-cd89b5b3fc2d25b401fb8d6dc6ea4e0337e28fa2.zip |
Added Tobicompatibility
-rw-r--r-- | JnR.cpp | 5 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 2 insertions, 5 deletions
@@ -109,9 +109,6 @@ Label::~Label() | |||
109 | SDL_FreeSurface(image); | 109 | SDL_FreeSurface(image); |
110 | } | 110 | } |
111 | */ | 111 | */ |
112 | vector<int> dirx = {1,0,-1,0}; | ||
113 | vector<int> diry = {0,1,0,-1}; | ||
114 | |||
115 | 112 | ||
116 | int xres = 600; | 113 | int xres = 600; |
117 | int yres = 450; | 114 | int yres = 450; |
@@ -433,7 +430,7 @@ int main() | |||
433 | { | 430 | { |
434 | x_pos = x_pos + x_vel/60.0; | 431 | x_pos = x_pos + x_vel/60.0; |
435 | y_pos = y_pos + y_vel/60.0; | 432 | y_pos = y_pos + y_vel/60.0; |
436 | drawCircle(screen, xres/4, abs(yres-y_pos), ball_rad, 100, 100, 100); | 433 | drawCircle(screen, xres/4, fabs(yres-y_pos), ball_rad, 100, 100, 100); |
437 | } | 434 | } |
438 | 435 | ||
439 | right = -keyState[SDLK_LEFT]+keyState[SDLK_RIGHT]; | 436 | right = -keyState[SDLK_LEFT]+keyState[SDLK_RIGHT]; |
@@ -3,4 +3,4 @@ | |||
3 | all: JnR | 3 | all: JnR |
4 | 4 | ||
5 | JnR: JnR.cpp | 5 | JnR: JnR.cpp |
6 | g++ JnR.cpp -O2 -Wall -lSDL -std=c++11 -o JnR | 6 | g++ JnR.cpp -O2 -Wall -lSDL -o JnR |