Remove FX_ASSVersion and related code since it wasn't used anywhere

git-svn-id: https://svn.eduke32.com/eduke32@3332 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2012-12-29 05:23:14 +00:00
parent 61a8eaf666
commit feaf4a7988
3 changed files with 15 additions and 24 deletions

View file

@ -40,15 +40,14 @@ extern "C" {
#endif #endif
enum FX_ERRORS enum FX_ERRORS
{ {
FX_Warning = -2, FX_Warning = -2,
FX_Error = -1, FX_Error = -1,
FX_Ok = 0, FX_Ok = 0,
FX_ASSVersion,
FX_SoundCardError, FX_SoundCardError,
FX_InvalidCard, FX_InvalidCard,
FX_MultiVocError, FX_MultiVocError,
}; };
#define FX_MUSIC_PRIORITY INT_MAX #define FX_MUSIC_PRIORITY INT_MAX

View file

@ -31,15 +31,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef __SNDCARDS_H #ifndef __SNDCARDS_H
#define __SNDCARDS_H #define __SNDCARDS_H
#define ASS_VERSION_STRING "JonoF 20090718"
typedef enum typedef enum
{ {
ASS_NoSound, ASS_NoSound,
ASS_SDL, ASS_SDL,
ASS_DirectSound, ASS_DirectSound,
ASS_NumSoundCards, ASS_NumSoundCards,
ASS_AutoDetect = -2 ASS_AutoDetect = -2
} soundcardnames; } soundcardnames;
#endif #endif

View file

@ -80,12 +80,6 @@ const char *FX_ErrorString
ErrorString = "Fx ok."; ErrorString = "Fx ok.";
break; break;
case FX_ASSVersion :
ErrorString = "Apogee Sound System Version " ASS_VERSION_STRING " "
"Programmed by Jim Dose\n"
"(c) Copyright 1995 James R. Dose. All Rights Reserved.\n";
break;
case FX_SoundCardError : case FX_SoundCardError :
ErrorString = SoundDriver_ErrorString(SoundDriver_GetError()); ErrorString = SoundDriver_ErrorString(SoundDriver_GetError());
break; break;