summaryrefslogtreecommitdiff
path: root/src/firelaser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/firelaser.cpp')
-rwxr-xr-xsrc/firelaser.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/firelaser.cpp b/src/firelaser.cpp
index db615ec..32eb0bd 100755
--- a/src/firelaser.cpp
+++ b/src/firelaser.cpp
@@ -33,7 +33,6 @@ CREATE_STATE(daFireLaser_c, pewpewpew);
struct EventTable_t {
u64 events;
- // ...
};
extern EventTable_t *EventTable;
@@ -41,7 +40,6 @@ extern EventTable_t *EventTable;
int daFireLaser_c::onCreate() {
- OSReport("Creating a fiery laser");
this->timer = 0;
this->direction = this->settings & 0xF;
@@ -74,7 +72,6 @@ int daFireLaser_c::onDraw() {
// Pew Pew State
void daFireLaser_c::beginState_pewpewpew() {
- OSReport("Firin' mah lazer.");
this->timer = 0;
}
void daFireLaser_c::executeState_pewpewpew() {
@@ -85,7 +82,6 @@ void daFireLaser_c::executeState_pewpewpew() {
this->timer = this->timer + 1;
if (this->timer < 20) {
- OSReport("Pew pew pew!");
float xlaunch;
float ylaunch;