Skip to content

Commit

Permalink
gsKit gsKit_init_global macro changed?
Browse files Browse the repository at this point in the history
  • Loading branch information
njrabit committed Jan 6, 2012
1 parent 256d65f commit a766f4b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sdl/src/video/ps2sdk/SDL_ps2video.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -169,8 +169,11 @@ static int PS2_VideoInit(SDL_VideoDevice *device, SDL_PixelFormat *vformat)
} }


printf("SDL: initializing gsKit in %s mode\n", pal ? "PAL" : "NTSC"); printf("SDL: initializing gsKit in %s mode\n", pal ? "PAL" : "NTSC");
gsGlobal = gsKit_init_global(pal ? GS_MODE_PAL : GS_MODE_NTSC);

/* gsKit gsKit_init_global macro changed? */
//gsGlobal = gsKit_init_global(pal ? GS_MODE_PAL : GS_MODE_NTSC);
gsGlobal = gsKit_init_global();

if (gsGlobal == NULL) if (gsGlobal == NULL)
{ {
SDL_SetError("Failed to initialize gsKit"); SDL_SetError("Failed to initialize gsKit");
Expand Down

0 comments on commit a766f4b

Please sign in to comment.