diff options
| author | Colin Noga <Tempus@chronometry.ca> | 2012-03-20 22:17:11 -0500 | 
|---|---|---|
| committer | Colin Noga <Tempus@chronometry.ca> | 2012-03-20 22:17:11 -0500 | 
| commit | 3cb4a8c2e6de8a2a3bd0a32a969341339db86d83 (patch) | |
| tree | 686bb44a39827ecc803dd8e8dbbff2412303cc35 /src/shyguy.cpp | |
| parent | a550f21ec661ddd8771a9c779f2b784209fee1f9 (diff) | |
| download | kamek-3cb4a8c2e6de8a2a3bd0a32a969341339db86d83.tar.gz kamek-3cb4a8c2e6de8a2a3bd0a32a969341339db86d83.zip | |
update with fixes
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(); | 
