1 Description: fix an issue.
2 Author: Lukáš Lalinský <lalinsky@gmail.com>
3 Last-Update: 2006-08-22
4 Index: libofa-0.9.3/examples/wavefile.cpp
5 ===================================================================
6 --- libofa-0.9.3.orig/examples/wavefile.cpp
7 +++ libofa-0.9.3/examples/wavefile.cpp
8 @@ -42,7 +42,11 @@ AudioData* loadWaveFile(char *file) {
12 - int fd = open(file, O_RDONLY | 0x8000);
14 + int fd = open(file, O_RDONLY | O_BINARY);
16 + int fd = open(file, O_RDONLY);