diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2010-03-27 16:04:59 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2010-03-27 16:04:59 +0000 |
commit | 2915713856e30907cbd6b0a5e4f8a119e859c9d9 (patch) | |
tree | f7a621ec9aa834c98362c28c9ddd6b3d216f754a /audio/stymulator/files/patch-ym2wav.cpp | |
parent | Update to 0.39. (diff) |
Add stymulator, a command-line Yamaha YM2149 (.ym) chiptune player.
Notes
Notes:
svn path=/head/; revision=251581
Diffstat (limited to 'audio/stymulator/files/patch-ym2wav.cpp')
-rw-r--r-- | audio/stymulator/files/patch-ym2wav.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/audio/stymulator/files/patch-ym2wav.cpp b/audio/stymulator/files/patch-ym2wav.cpp new file mode 100644 index 000000000000..251978999a41 --- /dev/null +++ b/audio/stymulator/files/patch-ym2wav.cpp @@ -0,0 +1,14 @@ +--- ym2wav.cpp.orig 2010-03-27 16:25:32.000000000 +0100 ++++ ym2wav.cpp 2010-03-27 16:26:14.000000000 +0100 +@@ -74,9 +74,9 @@ + char *platform; + + if (PLATFORM) +- platform = "64bit"; ++ platform = ((char *)"64bit"); + else +- platform = "32bit"; ++ platform = ((char *)"32bit"); + + //-------------------------------------------------------------------------- + // Checks args. |