mirror of
https://github.com/HarbourMasters/Starship
synced 2026-08-31 02:00:44 -04:00
Point filtering fix
This commit is contained in:
@@ -37,6 +37,10 @@ void Map_LevelSelect(void) {
|
||||
s32 nextPlanetId;
|
||||
OSContPad* contPress = &gControllerPress[gMainController];
|
||||
|
||||
if ((sMapState != MAP_IDLE) && (sMapState != MAP_ZOOM_PLANET)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (contPress->button & L_JPAD) {
|
||||
mission--;
|
||||
if (mission < 0) {
|
||||
@@ -81,7 +85,7 @@ void Map_LevelSelect(void) {
|
||||
|
||||
/* Draw */
|
||||
if ((sCurrentPlanetId >= 0) && (sCurrentPlanetId < PLANET_MAX)) {
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83);
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT);
|
||||
gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255);
|
||||
|
||||
Graphics_DisplaySmallText(20, y, 1.0f, 1.0f, "PLANET:");
|
||||
|
||||
@@ -194,7 +194,7 @@ void Jukebox_Update(void) {
|
||||
|
||||
/* Draw */
|
||||
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83);
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT);
|
||||
gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255);
|
||||
|
||||
Graphics_Printf("SFX ID: %08X", sfx);
|
||||
|
||||
@@ -197,7 +197,7 @@ void Jukebox_Update(void) {
|
||||
|
||||
/* Draw */
|
||||
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83);
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT);
|
||||
gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255);
|
||||
|
||||
Graphics_Printf("SFX ID: %08X", sfx);
|
||||
|
||||
+1
-1
@@ -397,7 +397,7 @@ void Spawner(void) {
|
||||
gPlayer[0].baseSpeed = gArwingSpeed;
|
||||
}
|
||||
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83);
|
||||
RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT);
|
||||
gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255);
|
||||
|
||||
/* Spawners */
|
||||
|
||||
Reference in New Issue
Block a user