mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-19 09:35:35 -04:00
Add more SST studio BGs
This commit is contained in:
parent
219d717851
commit
63cfe64c63
BIN
assets/gfx_charprevbg/bg_afterParty.png
Normal file
BIN
assets/gfx_charprevbg/bg_afterParty.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 524 KiB |
1
assets/gfx_charprevbg/bg_afterParty.t3s
Normal file
1
assets/gfx_charprevbg/bg_afterParty.t3s
Normal file
@ -0,0 +1 @@
|
|||||||
|
-f rgba -z auto "bg_afterParty.png"
|
BIN
assets/gfx_charprevbg/bg_beautician2.png
Normal file
BIN
assets/gfx_charprevbg/bg_beautician2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 628 KiB |
1
assets/gfx_charprevbg/bg_beautician2.t3s
Normal file
1
assets/gfx_charprevbg/bg_beautician2.t3s
Normal file
@ -0,0 +1 @@
|
|||||||
|
-f rgba -z auto "bg_beautician2.png"
|
@ -22,6 +22,8 @@ const char* import_ss2BgNames[] {
|
|||||||
"Cafe (Fall)",
|
"Cafe (Fall)",
|
||||||
"Cafe (Winter)",
|
"Cafe (Winter)",
|
||||||
"Exhibition Hall",
|
"Exhibition Hall",
|
||||||
|
"Beautician",
|
||||||
|
"After Party",
|
||||||
};
|
};
|
||||||
|
|
||||||
int import_ss2BgNums[] {
|
int import_ss2BgNums[] {
|
||||||
@ -48,4 +50,6 @@ int import_ss2BgNums[] {
|
|||||||
37,
|
37,
|
||||||
38,
|
38,
|
||||||
39,
|
39,
|
||||||
|
40,
|
||||||
|
41,
|
||||||
};
|
};
|
||||||
|
@ -179,6 +179,12 @@ void GFX::loadBgSprite(void) {
|
|||||||
bgPath = "romfs:/gfx/bgNight_exhibitionHall2.t3x";
|
bgPath = "romfs:/gfx/bgNight_exhibitionHall2.t3x";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case 40:
|
||||||
|
bgPath = "romfs:/gfx/bg_beautician2.t3x";
|
||||||
|
break;
|
||||||
|
case 41:
|
||||||
|
bgPath = "romfs:/gfx/bg_afterParty.t3x";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
bgSprite = C2D_SpriteSheetLoad(bgPath);
|
bgSprite = C2D_SpriteSheetLoad(bgPath);
|
||||||
doBgSpriteFree = true;
|
doBgSpriteFree = true;
|
||||||
|
@ -33,7 +33,7 @@ void PhotoStudio::getMaxChars() {
|
|||||||
} else if (photo_highlightedGame == 2) {
|
} else if (photo_highlightedGame == 2) {
|
||||||
import_totalCharacters = 8;
|
import_totalCharacters = 8;
|
||||||
} else if (photo_highlightedGame == 1) {
|
} else if (photo_highlightedGame == 1) {
|
||||||
import_totalCharacters = 22;
|
import_totalCharacters = 24;
|
||||||
} else if (photo_highlightedGame == 0) {
|
} else if (photo_highlightedGame == 0) {
|
||||||
import_totalCharacters = 0;
|
import_totalCharacters = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user