misc. fixes

This commit is contained in:
Tim Hentenaar
2003-02-19 23:53:19 +00:00
parent 6518f024e2
commit 9b0f6baef2
3 changed files with 8 additions and 1 deletions
+2
View File
@@ -16,7 +16,9 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#include "RageTextureManager.h" #include "RageTextureManager.h"
#include "RageBitmapTexture.h" #include "RageBitmapTexture.h"
#if !defined(LINUX)
# include "RageMovieTexture.h" # include "RageMovieTexture.h"
#endif
#include "RageUtil.h" #include "RageUtil.h"
#include "RageLog.h" #include "RageLog.h"
#include "RageException.h" #include "RageException.h"
+1
View File
@@ -7,6 +7,7 @@
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved. Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford Chris Danford
Tim Hentenaar
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
*/ */
@@ -254,6 +254,10 @@ RageSound_Linux::~RageSound_Linux() {
CloseAudio(); CloseAudio();
} }
int RageSound_Linux::MixerThread_start(void *p) {
((RageSound_Linux *) p)->MixerThread();
return 0;
}