From f86374455e44bc9b1abc86f7f6e3d9ba29dcc749 Mon Sep 17 00:00:00 2001 From: gewlitys Date: Sat, 30 Nov 2002 21:41:04 +0000 Subject: [PATCH] Removed redundant file git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@274 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/test.c | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 sc2/src/sc2code/test.c diff --git a/sc2/src/sc2code/test.c b/sc2/src/sc2code/test.c deleted file mode 100644 index 03a6cc177..000000000 --- a/sc2/src/sc2code/test.c +++ /dev/null @@ -1,27 +0,0 @@ -#include -#include -#include "sndlib.h" -#include "starcon.h" -#include "libs/sound/sound_common.h" - -int -main (int argc, char *argv[]) -{ -// InitSound (argc, argv); - TFB_InitSound (TFB_SOUNDDRIVER_SDL, 0, 44100); - - while (1) - { - COUNT sound_index; - - fprintf (stderr, "Sound #: "); - if (fscanf (stdin, "%u", &sound_index) != 1) - break; - - PlaySound (sound_index, GAME_SOUND_PRIORITY); - } - - UninitSound (); - - exit (EXIT_SUCCESS); -}