mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-04-28 21:27:58 +03:00
Fix Title Logo Flame Colors (#5275)
This commit is contained in:
parent
8f126344a4
commit
9892bfaffa
1 changed files with 4 additions and 4 deletions
|
@ -108,7 +108,7 @@ void EnMag_Init(Actor* thisx, PlayState* play) {
|
||||||
this->effectPrimLodFrac = 128.0f;
|
this->effectPrimLodFrac = 128.0f;
|
||||||
this->effectAlpha = 255.0f;
|
this->effectAlpha = 255.0f;
|
||||||
|
|
||||||
if (isMQ) {
|
if (!isMQ) {
|
||||||
this->effectPrimColor[0] = 255.0f;
|
this->effectPrimColor[0] = 255.0f;
|
||||||
this->effectPrimColor[1] = 255.0f;
|
this->effectPrimColor[1] = 255.0f;
|
||||||
this->effectPrimColor[2] = 170;
|
this->effectPrimColor[2] = 170;
|
||||||
|
@ -243,7 +243,7 @@ void EnMag_Update(Actor* thisx, PlayState* play) {
|
||||||
this->effectFadeInState = 1;
|
this->effectFadeInState = 1;
|
||||||
}
|
}
|
||||||
} else if (this->effectFadeInState == 1) {
|
} else if (this->effectFadeInState == 1) {
|
||||||
if (isMQ) {
|
if (!isMQ) {
|
||||||
this->effectPrimColor[2] += -2.125f;
|
this->effectPrimColor[2] += -2.125f;
|
||||||
this->effectEnvColor[1] += -3.875f;
|
this->effectEnvColor[1] += -3.875f;
|
||||||
} else {
|
} else {
|
||||||
|
@ -258,7 +258,7 @@ void EnMag_Update(Actor* thisx, PlayState* play) {
|
||||||
if (this->effectFadeInTimer == 0) {
|
if (this->effectFadeInTimer == 0) {
|
||||||
this->effectPrimLodFrac = 128.0f;
|
this->effectPrimLodFrac = 128.0f;
|
||||||
|
|
||||||
if (isMQ) {
|
if (!isMQ) {
|
||||||
this->effectPrimColor[2] = 170.0f;
|
this->effectPrimColor[2] = 170.0f;
|
||||||
this->effectEnvColor[1] = 100.0f;
|
this->effectEnvColor[1] = 100.0f;
|
||||||
} else {
|
} else {
|
||||||
|
@ -563,7 +563,7 @@ void EnMag_DrawInner(Actor* thisx, PlayState* play, Gfx** gfxP) {
|
||||||
|
|
||||||
gDPSetPrimColor(gfx++, 0, 0, 0, 0, 0, (s16)this->mainAlpha);
|
gDPSetPrimColor(gfx++, 0, 0, 0, 0, 0, (s16)this->mainAlpha);
|
||||||
|
|
||||||
if (isMQ) {
|
if (!isMQ) {
|
||||||
gDPSetEnvColor(gfx++, 100, 0, 100, 255);
|
gDPSetEnvColor(gfx++, 100, 0, 100, 255);
|
||||||
} else {
|
} else {
|
||||||
gDPSetEnvColor(gfx++, 0, 0, 100, 255);
|
gDPSetEnvColor(gfx++, 0, 0, 100, 255);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue