Remove copyrighted OSI logo from project

This commit is contained in:
Xavier Del Campo Romero 2021-01-03 02:47:33 +01:00
parent 094ae30c49
commit fdd02c3b83
6 changed files with 0 additions and 28 deletions

View File

@ -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

View File

@ -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);
}
}

View File

@ -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;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -1 +0,0 @@
8 -org=464,0 -mpink -clut=384,503

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB