示例#1
0
void LunaticExit(void)
{
	MusicExit();
	ExitItems();
	ExitSound();
	ExitDisplay();
	ExitTiles();
	ExitMonsters();
	ExitPlayer();
	ExitInterface();
	fclose(logFile);
}
示例#2
0
文件: sound.c 项目: hhirsch/netrek
void Exit_Sound(void) {

#if defined(sgi)
	if (sound_init)
		sfxEnd(1);

#elif !defined(HAVE_SDL)
	if (sound_init)
		ExitSound();
#endif
	sound_init = 0;
	sound_toggle = 0;
}
示例#3
0
MainWindow::~MainWindow()
{
    ExitSound();
}