1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 15:09:10 +00:00

(svn r26556) -Codechange: use sources.list to tell a file shouldn't be built for a particular platform

This commit is contained in:
rubidium
2014-05-03 20:21:01 +00:00
parent 77bc71aad5
commit d2357ec435
2 changed files with 4 additions and 4 deletions

View File

@@ -1108,7 +1108,10 @@ music/null_m.cpp
#else
#if DOS
#else
music/extmidi.cpp
#if MORPHOS
#else
music/extmidi.cpp
#end
#end
#end
#end

View File

@@ -9,7 +9,6 @@
/** @file extmidi.cpp Playing music via an external player. */
#ifndef __MORPHOS__
#include "../stdafx.h"
#include "../debug.h"
#include "../string_func.h"
@@ -135,5 +134,3 @@ void MusicDriver_ExtMidi::DoStop()
waitpid(this->pid, NULL, 0);
this->pid = -1;
}
#endif /* __MORPHOS__ */