diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-04-23 00:45:07 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-04-23 00:45:07 +0300 |
commit | d44c4c73182cc21d6984e0188c4e45e0350b6e7a (patch) | |
tree | 634fbec9f0ee4ab69d3d6827afc5e73eef9d7e8d /src/chips | |
parent | fc3699996b318d44a91b6dcd2f4a5fdeb54116b9 (diff) | |
download | libADLMIDI-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.cpp | 4 |
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); } |