mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-30 18:55:54 +00:00
Match retail effects files in code (#1690)
* Match code effects files * Poke jenkins
This commit is contained in:
parent
3be307bf35
commit
8f481b648d
4 changed files with 28 additions and 24 deletions
|
@ -5,7 +5,6 @@
|
|||
void EffectSpark_Init(void* thisx, void* initParamsx) {
|
||||
EffectSpark* this = (EffectSpark*)thisx;
|
||||
EffectSparkInit* initParams = (EffectSparkInit*)initParamsx;
|
||||
EffectSparkElement* elem;
|
||||
f32 velocityNorm;
|
||||
s32 i;
|
||||
|
||||
|
@ -61,7 +60,7 @@ void EffectSpark_Init(void* thisx, void* initParamsx) {
|
|||
}
|
||||
|
||||
for (i = 0; i < this->numElements; i++) {
|
||||
elem = &this->elements[i];
|
||||
EffectSparkElement* elem = &this->elements[i];
|
||||
|
||||
elem->position.x = this->position.x;
|
||||
elem->position.y = this->position.y;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue