diff --git a/sc2/src/sc2code/libs/graphics/sdl/3do_funcs.c b/sc2/src/sc2code/libs/graphics/sdl/3do_funcs.c index c046ecf23..6eca8e62a 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/3do_funcs.c +++ b/sc2/src/sc2code/libs/graphics/sdl/3do_funcs.c @@ -136,73 +136,6 @@ ScreenTransition (int TransType, PRECT pRect) TransitionAmount = 255; } -// Status: Ignored -BOOLEAN -InitVideo (BOOLEAN useCDROM) //useCDROM doesn't really apply to us... -{ - BOOLEAN ret; - - (void)useCDROM; /* dodge compiler warning */ - -// fprintf (stderr, "Unimplemented function activated: InitVideo()\n"); - ret = TRUE; - return (ret); -} - -// Status: Ignored -void -UninitVideo () //empty -{ - // fprintf (stderr, "Unimplemented function activated: UninitVideo()\n"); -} - -//Status: Unimplemented -void -VidStop() // At least this one makes sense. -{ - // fprintf (stderr, "Unimplemented function activated: VidStop()\n"); -} - -//Status: Unimplemented -MEM_HANDLE -VidPlaying() // Easy enough. -{ - MEM_HANDLE ret; - - //fprintf (stderr, "Unimplemented function activated: VidPlaying()\n"); - ret = 0; - return (ret); -} - -//Status: Unimplemented -VIDEO_TYPE -VidPlay (VIDEO_REF VidRef, char *loopname, BOOLEAN uninit) - // uninit? when done, I guess. -{ - VIDEO_TYPE ret; - ret = 0; - - /* dodge compiler warnings */ - (void) VidRef; - (void) loopname; - (void) uninit; -// fprintf (stderr, "Unimplemented function activated: VidPlay()\n"); - return (ret); -} - -VIDEO_REF -_init_video_file(PVOID pStr) -{ - VIDEO_REF ret; - - fprintf (stderr, "Unimplemented function activated: _init_video_file()\n"); - - /* dodge compiler warning */ - (void) pStr; - ret = 0; - return (ret); -} - BOOLEAN _image_intersect (PIMAGE_BOX box1, PIMAGE_BOX box2, PRECT rect) {