aboutsummaryrefslogtreecommitdiff
path: root/src/chips
diff options
context:
space:
mode:
authorVitaly Novichkov <admin@wohlnet.ru>2018-04-23 00:45:07 +0300
committerVitaly Novichkov <admin@wohlnet.ru>2018-04-23 00:45:07 +0300
commitd44c4c73182cc21d6984e0188c4e45e0350b6e7a (patch)
tree634fbec9f0ee4ab69d3d6827afc5e73eef9d7e8d /src/chips
parentfc3699996b318d44a91b6dcd2f4a5fdeb54116b9 (diff)
downloadlibADLMIDI-d44c4c73182cc21d6984e0188c4e45e0350b6e7a.tar.gz
libADLMIDI-d44c4c73182cc21d6984e0188c4e45e0350b6e7a.tar.bz2
libADLMIDI-d44c4c73182cc21d6984e0188c4e45e0350b6e7a.zip
Fixed Android build
Diffstat (limited to 'src/chips')
-rw-r--r--src/chips/dosbox_opl3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chips/dosbox_opl3.cpp b/src/chips/dosbox_opl3.cpp
index 24c1c44..e748b85 100644
--- a/src/chips/dosbox_opl3.cpp
+++ b/src/chips/dosbox_opl3.cpp
@@ -5,14 +5,14 @@
DosBoxOPL3::DosBoxOPL3() :
OPLChipBase(),
- m_chip(nullptr)
+ m_chip(NULL)
{
reset();
}
DosBoxOPL3::DosBoxOPL3(const DosBoxOPL3 &c) :
OPLChipBase(c),
- m_chip(nullptr)
+ m_chip(NULL)
{
setRate(c.m_rate);
}