diff options
Diffstat (limited to 'src/bossPodouble.cpp')
-rw-r--r-- | src/bossPodouble.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bossPodouble.cpp b/src/bossPodouble.cpp index 4470cda..9388d62 100644 --- a/src/bossPodouble.cpp +++ b/src/bossPodouble.cpp @@ -164,7 +164,6 @@ int daPodouble::onCreate() { this->Baseline = this->pos.y - (float)((this->settings & 0xFF) * 0.8); - OSReport("Creating the Podouble Model\n"); allocator.link(-1, GameHeaps[0], 0, 0x20); // Fire or Ice @@ -222,7 +221,6 @@ int daPodouble::onCreate() { // Stuff I do understand - OSReport("Setting Podouble's Size to 1.0\n"); this->scale = (Vec){1.0, 1.0, 1.0}; @@ -241,7 +239,6 @@ int daPodouble::onCreate() { this->goingUp = 0; - OSReport("Creating Podouble's Physics Struct\n"); ActivePhysics::Info HitMeBaby; @@ -258,13 +255,11 @@ int daPodouble::onCreate() { HitMeBaby.unkShort1C = 0; HitMeBaby.callback = &poodleCollisionCallback; - OSReport("Making the Physics Class and adding to the list\n"); this->aPhysics.initWithStruct(this, &HitMeBaby); this->aPhysics.addToList(); doStateChange(&StateID_Grow); - OSReport("Going to Execute Podouble\n"); this->onExecute(); return true; } |