summaryrefslogtreecommitdiffstats
path: root/src/audio/oal/stream.cpp
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-07-11 03:26:21 +0200
committerwithmorten <morten.with@gmail.com>2021-07-11 03:26:21 +0200
commitd7ceb4870c621dedc088cd4c8eccde63ad281230 (patch)
tree1fd5987a3b765e31c238144ccc84ff1833e6f832 /src/audio/oal/stream.cpp
parentPhysical: division by zero fix (diff)
downloadre3-d7ceb4870c621dedc088cd4c8eccde63ad281230.tar
re3-d7ceb4870c621dedc088cd4c8eccde63ad281230.tar.gz
re3-d7ceb4870c621dedc088cd4c8eccde63ad281230.tar.bz2
re3-d7ceb4870c621dedc088cd4c8eccde63ad281230.tar.lz
re3-d7ceb4870c621dedc088cd4c8eccde63ad281230.tar.xz
re3-d7ceb4870c621dedc088cd4c8eccde63ad281230.tar.zst
re3-d7ceb4870c621dedc088cd4c8eccde63ad281230.zip
Diffstat (limited to '')
-rw-r--r--src/audio/oal/stream.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audio/oal/stream.cpp b/src/audio/oal/stream.cpp
index 0209202a..6afe8e30 100644
--- a/src/audio/oal/stream.cpp
+++ b/src/audio/oal/stream.cpp
@@ -2,7 +2,7 @@
#ifdef AUDIO_OAL
-#if defined _MSC_VER && !defined RE3_NO_AUTOLINK
+#if defined _MSC_VER && !defined CMAKE_NO_AUTOLINK
#ifdef AUDIO_OAL_USE_SNDFILE
#pragma comment( lib, "libsndfile-1.lib" )
#endif
@@ -504,6 +504,7 @@ public:
class CMP3File : public IDecoder
{
+protected:
mpg123_handle *m_pMH;
bool m_bOpened;
uint32 m_nRate;