Changeset - r2190:2a211bd986dd
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-07-25 07:20:32
tron@openttd.org
(svn r2705) Fix #include paths and remove unnecessary #includes
1 file changed with 3 insertions and 5 deletions:
0 comments (0 inline, 0 general)
music/dmusic2.cpp
Show inline comments
 
@@ -23,29 +23,27 @@
 
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 */
 

	
 
/* DirectMusic driver for Win32 */
 
/* Based on dxmci from TTDPatch */
 

	
 
#include "stdafx.h"
 
#include "../stdafx.h"
 

	
 
#ifdef WIN32_ENABLE_DIRECTMUSIC_SUPPORT
 

	
 
// for gcc, the GUIDs are available in a library instead
 
#ifndef __GNUC__
 
#define INITGUID
 
#endif
 

	
 
#ifdef __cplusplus
 
	extern "C" {
 
#endif
 

	
 
#include "openttd.h"
 
#include "debug.h"
 
#include "sound.h"
 
#include "hal.h"
 
#include "../openttd.h"
 
#include "../debug.h"
 

	
 
#ifdef __cplusplus
 
	}
 
#endif
 

	
 
#include <windows.h>
0 comments (0 inline, 0 general)