Updated MacOS Classic build

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401520
This commit is contained in:
Sam Lantinga 2006-03-13 05:36:42 +00:00
parent 34d826583e
commit 61549bf6a5
11 changed files with 33 additions and 24 deletions

View file

@ -60,7 +60,7 @@ static void FillBackground(SDL_Surface *screen)
}
/* Create a "light" -- a yellowish surface with variable alpha */
SDL_Surface *CreateLight(SDL_Surface *screen, int radius)
SDL_Surface *CreateLight(int radius)
{
Uint8 trans, alphamask;
int range, addition;
@ -401,7 +401,7 @@ int main(int argc, char *argv[])
FillBackground(screen);
/* Create the light */
light = CreateLight(screen, 82);
light = CreateLight(82);
if ( light == NULL ) {
quit(1);
}