summaryrefslogtreecommitdiff
path: root/src/bossPodouble.cpp
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-03-15 02:54:33 +0100
committerTreeki <treeki@gmail.com>2012-03-15 02:54:33 +0100
commite88fd1dcef52d4375fef655918886fc14bb1f40c (patch)
treef081b14a420331258665a58ad31be54b13b1c655 /src/bossPodouble.cpp
parent18a6c3dbe01f484b346923ebc53f674c1e4a5101 (diff)
downloadkamek-e88fd1dcef52d4375fef655918886fc14bb1f40c.tar.gz
kamek-e88fd1dcef52d4375fef655918886fc14bb1f40c.zip
optimisations to reduce code size
Diffstat (limited to '')
-rw-r--r--src/bossPodouble.cpp5
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;
}