mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-23 21:03:02 +00:00
Stub out unfinished implementations
This commit is contained in:
parent
2a827a98bb
commit
89cfb674d9
3 changed files with 2104 additions and 126 deletions
|
@ -2225,7 +2225,7 @@ void I_Sleep(void)
|
||||||
INT32 I_StartupSystem(void)
|
INT32 I_StartupSystem(void)
|
||||||
{
|
{
|
||||||
SDL_version SDLcompiled;
|
SDL_version SDLcompiled;
|
||||||
SDL_version *SDLlinked = NULL;
|
SDL_version SDLlinked;
|
||||||
#ifdef _XBOX
|
#ifdef _XBOX
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
char DP[] =" Sonic Robo Blast 2!\n";
|
char DP[] =" Sonic Robo Blast 2!\n";
|
||||||
|
@ -2246,12 +2246,12 @@ INT32 I_StartupSystem(void)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
SDL_VERSION(&SDLcompiled)
|
SDL_VERSION(&SDLcompiled)
|
||||||
SDL_GetVersion(SDLlinked);
|
SDL_GetVersion(&SDLlinked);
|
||||||
I_StartupConsole();
|
I_StartupConsole();
|
||||||
I_OutputMsg("Compiled for SDL version: %d.%d.%d\n",
|
I_OutputMsg("Compiled for SDL version: %d.%d.%d\n",
|
||||||
SDLcompiled.major, SDLcompiled.minor, SDLcompiled.patch);
|
SDLcompiled.major, SDLcompiled.minor, SDLcompiled.patch);
|
||||||
I_OutputMsg("Linked with SDL version: %d.%d.%d\n",
|
I_OutputMsg("Linked with SDL version: %d.%d.%d\n",
|
||||||
SDLlinked->major, SDLlinked->minor, SDLlinked->patch);
|
SDLlinked.major, SDLlinked.minor, SDLlinked.patch);
|
||||||
#if 0 //#ifdef GP2X //start up everything
|
#if 0 //#ifdef GP2X //start up everything
|
||||||
if (SDL_Init(SDL_INIT_NOPARACHUTE|SDL_INIT_EVERYTHING) < 0)
|
if (SDL_Init(SDL_INIT_NOPARACHUTE|SDL_INIT_EVERYTHING) < 0)
|
||||||
#else
|
#else
|
||||||
|
|
2220
src/sdl2/i_video.c
2220
src/sdl2/i_video.c
File diff suppressed because it is too large
Load diff
|
@ -1320,8 +1320,8 @@ void I_StartupSound(void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char ad[100];
|
//char ad[100];
|
||||||
CONS_Printf(M_GetText(" Starting up with audio driver : %s\n"), SDL_AudioDriverName(ad, (int)sizeof ad));
|
//CONS_Printf(M_GetText(" Starting up with audio driver : %s\n"), SDL_AudioDriverName(ad, (int)sizeof ad));
|
||||||
}
|
}
|
||||||
samplecount = audio.samples;
|
samplecount = audio.samples;
|
||||||
CV_SetValue(&cv_samplerate, audio.freq);
|
CV_SetValue(&cv_samplerate, audio.freq);
|
||||||
|
|
Loading…
Reference in a new issue