diff options
Diffstat (limited to '')
-rw-r--r-- | src/shyguy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shyguy.cpp b/src/shyguy.cpp index acee2f6..5679e49 100644 --- a/src/shyguy.cpp +++ b/src/shyguy.cpp @@ -1121,7 +1121,7 @@ void daShyGuy::updateModelMatrices() { // if (this->spikeA != 0) { // PlaySound(spikeA, SE_OBJ_ROCK_S_CRASH); // CreateEffect(&(Vec){this->spikeA->pos.x, this->spikeA->pos.y, 5500.0}, &(S16Vec){0,0,0}, &(Vec){1.0, 1.0, 1.0}, 9); - // this->spikeA->Delete(this->spikeA->_390); + // this->spikeA->Delete(this->spikeA->deleteForever); // } // this->spikeA = spawned; // spikeTurn = 1; @@ -1130,7 +1130,7 @@ void daShyGuy::updateModelMatrices() { // if (this->spikeB != 0) { // PlaySound(spikeB, SE_OBJ_ROCK_S_CRASH); // CreateEffect(&(Vec){this->spikeB->pos.x, this->spikeB->pos.y, 5500.0}, &(S16Vec){0,0,0}, &(Vec){1.0, 1.0, 1.0}, 9); - // this->spikeB->Delete(this->spikeB->_390); + // this->spikeB->Delete(this->spikeB->deleteForever); // } // this->spikeB = spawned; // spikeTurn = 0; @@ -1434,7 +1434,7 @@ void daShyGuy::updateModelMatrices() { if (this->timer > 450) { this->kill(); - this->Delete(1); + this->Delete(this->deleteForever); } // dEn_c::dieFall_Execute(); |