summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2004-12-01 15:23:05 +0000
committerbjarni <bjarni@openttd.org>2004-12-01 15:23:05 +0000
commitc925f452e740dbd1e4d9d48dd2ff814aa9cdc6ee (patch)
tree2765cc9713539a8afb93f2ccb648edbe6a97cf20 /os
parent2fc6077a68f9f6e979656f93dcd298dd63627ed8 (diff)
downloadopenttd-c925f452e740dbd1e4d9d48dd2ff814aa9cdc6ee.tar.xz
(svn r869) Mac: finally made asserts open the console, so people should be able to see what went wrong even if they opened the game in the GUI
deleted the wrongly moved bemidi.cpp
Diffstat (limited to 'os')
-rw-r--r--os/beos/bemidi.cpp55
-rw-r--r--os/macos/Crash_Log_Opener.sitbin16831 -> 0 bytes
2 files changed, 0 insertions, 55 deletions
diff --git a/os/beos/bemidi.cpp b/os/beos/bemidi.cpp
deleted file mode 100644
index d0f41d865..000000000
--- a/os/beos/bemidi.cpp
+++ /dev/null
@@ -1,55 +0,0 @@
-#ifdef __BEOS__
-
-#include "stdafx.h"
-#include "ttd.h"
-#include "hal.h"
-
-// BeOS System Includes
-#include <MidiSynthFile.h>
-
-BMidiSynthFile midiSynthFile;
-
-static char *bemidi_start(char **parm)
-{
- return NULL;
-}
-
-static void bemidi_stop(void)
-{
- midiSynthFile.UnloadFile();
-}
-
-static void bemidi_play_song(const char *filename)
-{
- bemidi_stop();
- entry_ref midiRef;
- get_ref_for_path(filename, &midiRef);
- midiSynthFile.LoadFile(&midiRef);
- midiSynthFile.Start();
-}
-
-static void bemidi_stop_song(void)
-{
- midiSynthFile.UnloadFile();
-}
-
-static bool bemidi_is_playing(void)
-{
- return !midiSynthFile.IsFinished();
-}
-
-static void bemidi_set_volume(byte vol)
-{
- fprintf(stderr, "BeMidi: Set volume not implemented\n");
-}
-
-const HalMusicDriver _bemidi_music_driver = {
- bemidi_start,
- bemidi_stop,
- bemidi_play_song,
- bemidi_stop_song,
- bemidi_is_playing,
- bemidi_set_volume,
-};
-
-#endif // __BEOS__
diff --git a/os/macos/Crash_Log_Opener.sit b/os/macos/Crash_Log_Opener.sit
deleted file mode 100644
index 29cf89c3a..000000000
--- a/os/macos/Crash_Log_Opener.sit
+++ /dev/null
Binary files differ