aboutsummaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 02:47:33 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 02:52:28 +0100
commitfdd02c3b8386d7bac3092063f98fd5b9aed90be7 (patch)
tree56f8b744f76dbe960753ff2c59043eb974662bed /Source
parent094ae30c49736f9e1f7edff0644df8e7a52106ad (diff)
downloadairport-fdd02c3b8386d7bac3092063f98fd5b9aed90be7.tar.gz
Remove copyrighted OSI logo from project
Diffstat (limited to 'Source')
-rw-r--r--Source/Menu.c2
-rw-r--r--Source/PSXSDKIntro.c24
-rw-r--r--Source/PSXSDKIntro.h1
3 files changed, 0 insertions, 27 deletions
diff --git a/Source/Menu.c b/Source/Menu.c
index 7f21d85..cdbeb18 100644
--- a/Source/Menu.c
+++ b/Source/Menu.c
@@ -260,7 +260,6 @@ static void MainMenuInit(void)
"DATA\\SPRITES\\PSXDISK.TIM",
"DATA\\FONTS\\INTROFNT.TIM",
"DATA\\SPRITES\\GPL.TIM",
- "DATA\\SPRITES\\OPENSRC.TIM",
"DATA\\SOUNDS\\TRAYCL.VAG",
"DATA\\SOUNDS\\SPINDISK.VAG"
#endif // NO_INTRO
@@ -276,7 +275,6 @@ static void MainMenuInit(void)
&PsxDisk,
&PSXSDKIntroFont,
&GPL_Logo,
- &OpenSource_Logo,
&TrayClSnd,
&SpinDiskSnd
#endif // NO_INTRO
diff --git a/Source/PSXSDKIntro.c b/Source/PSXSDKIntro.c
index af25487..85301d4 100644
--- a/Source/PSXSDKIntro.c
+++ b/Source/PSXSDKIntro.c
@@ -91,14 +91,6 @@ enum
GPL_LOGO_Y = 16
};
-enum
-{
- OPEN_SOURCE_LOGO_LUMINANCE_STEP = 1,
- OPEN_SOURCE_LOGO_LUMINANCE_TARGET = NORMAL_LUMINANCE,
- OPEN_SOURCE_LOGO_X = X_SCREEN_RESOLUTION - 64 - 16,
- OPEN_SOURCE_LOGO_Y = 16
-};
-
/* *************************************
* Local Prototypes
* *************************************/
@@ -131,7 +123,6 @@ static const char* strPSXSDKIntroAuthor = {"BY NEXTVOLUME"};
GsSprite PsxDisk;
GsSprite PSXSDKIntroFont;
GsSprite GPL_Logo;
-GsSprite OpenSource_Logo;
SsVag TrayClSnd;
SsVag SpinDiskSnd;
@@ -212,10 +203,6 @@ void PSXSDKIntro(void)
GPL_Logo.r = 0;
GPL_Logo.g = 0;
GPL_Logo.b = 0;
-
- OpenSource_Logo.r = 0;
- OpenSource_Logo.g = 0;
- OpenSource_Logo.b = 0;
}
else if ( (PSXSDKIntroRandTextEvent)
&&
@@ -234,20 +221,9 @@ void PSXSDKIntro(void)
GPL_Logo.x = GPL_LOGO_X;
GPL_Logo.y = GPL_LOGO_Y;
-
- if (OpenSource_Logo.r < OPEN_SOURCE_LOGO_LUMINANCE_TARGET)
- {
- OpenSource_Logo.r += OPEN_SOURCE_LOGO_LUMINANCE_STEP;
- OpenSource_Logo.g += OPEN_SOURCE_LOGO_LUMINANCE_STEP;
- OpenSource_Logo.b += OPEN_SOURCE_LOGO_LUMINANCE_STEP;
- }
-
- OpenSource_Logo.x = OPEN_SOURCE_LOGO_X;
- OpenSource_Logo.y = OPEN_SOURCE_LOGO_Y;
}
GfxSortSprite(&GPL_Logo);
- GfxSortSprite(&OpenSource_Logo);
}
}
diff --git a/Source/PSXSDKIntro.h b/Source/PSXSDKIntro.h
index a0d662d..f81d6ae 100644
--- a/Source/PSXSDKIntro.h
+++ b/Source/PSXSDKIntro.h
@@ -20,7 +20,6 @@ void PSXSDKIntro(void);
extern GsSprite PsxDisk;
extern GsSprite PSXSDKIntroFont;
extern GsSprite GPL_Logo;
-extern GsSprite OpenSource_Logo;
extern SsVag TrayClSnd;
extern SsVag SpinDiskSnd;