]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cd_sdl.c
- Removed Con_SafePrint and Con_SafePrintf since they now does the same things as...
[xonotic/darkplaces.git] / cd_sdl.c
index fd75fec0ec7e74597fa0a86fc361a28126b527bc..916d67970ccb510ce7c560fba78c698885ceac59 100644 (file)
--- a/cd_sdl.c
+++ b/cd_sdl.c
@@ -130,7 +130,7 @@ int CDAudio_SysUpdate (void)
 void CDAudio_SysInit (void)
 {
        if( SDL_InitSubSystem( SDL_INIT_CDROM ) == -1 ) 
-               Con_SafePrint( "Failed to init the CDROM SDL subsystem!\n" );
+               Con_Print( "Failed to init the CDROM SDL subsystem!\n" );
 
        Cmd_AddCommand( "cddrive", CDAudio_SDL_CDDrive_f );
 }
@@ -153,12 +153,12 @@ int CDAudio_SysStartup (void)
        if( numdrives == -1 ) // was the CDROM system initialized correctly?
                return -1;
 
-       Con_DPrintf( "Found %i cdrom drives.\n", numdrives );
+       Con_Printf( "Found %i cdrom drives.\n", numdrives );
 
        for( i = 0 ; i < numdrives ; i++, cd = NULL ) {
                cd = SDL_CDOpen( i );
                if( !cd ) {
-                       Con_DPrintf( "CD drive %i is invalid.\n", i );
+                       Con_Printf( "CD drive %i is invalid.\n", i );
                        continue;
                }
 
@@ -166,9 +166,9 @@ int CDAudio_SysStartup (void)
                        if( IsAudioCD() )
                                break;
                        else
-                               Con_DPrintf( "The CD in drive %i is not an audio cd.\n", i );
+                               Con_Printf( "The CD in drive %i is not an audio cd.\n", i );
                else
-                       Con_DPrintf( "No CD in drive %i.\n", i );
+                       Con_Printf( "No CD in drive %i.\n", i );
 
                SDL_CDClose( cd );
        }