diff options
Diffstat (limited to 'src/topman.cpp')
-rw-r--r-- | src/topman.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/topman.cpp b/src/topman.cpp index a255a82..c9a679d 100644 --- a/src/topman.cpp +++ b/src/topman.cpp @@ -2,9 +2,6 @@ #include <game.h> #include <g3dhax.h> #include <sfx.h> -#include <stage.h> -#include "effects.h" -#include "player.h" class daTopman : public dEn_c { int onCreate(); @@ -548,11 +545,11 @@ void daTopman::updateModelMatrices() { } void daTopman::endState_KnockBack() { if (this->rot.y == 0x2800) { - // CreateEffect(&this->pos, &(S16Vec){0,0,0}, &(Vec){1.0, 1.0, 1.0}, 175); + this->direction = 0; } else { - // CreateEffect(&this->pos, &(S16Vec){0,0,0}, &(Vec){1.0, 1.0, 1.0}, 192); + this->direction = 1; } // OSReport("Rotation: %x", this->rot.y); |