diff options
author | 2016-07-31 19:23:49 +0200 | |
---|---|---|
committer | 2016-07-31 20:02:56 +0200 | |
commit | 6f5e223853eceb25a542c81d86c5cc9c715e3879 (patch) | |
tree | 21f6aabcbe586f330d895b19f224bbc08f145321 /src/lib/util/aviio.cpp | |
parent | 49bd91f3dee2a7a3e18dcc5be4ae5ea6d116157b (diff) |
for bool type use true and false (nw)
Diffstat (limited to 'src/lib/util/aviio.cpp')
-rw-r--r-- | src/lib/util/aviio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/aviio.cpp b/src/lib/util/aviio.cpp index f0feceeffbd..6efae25a654 100644 --- a/src/lib/util/aviio.cpp +++ b/src/lib/util/aviio.cpp @@ -1945,7 +1945,7 @@ avi_file::error avi_file_impl::append_sound_samples(int channel, const std::int1 m_soundbuf_chansamples[channel] = sampoffset; /* flush any full sound chunks to disk */ - return soundbuf_flush(TRUE); + return soundbuf_flush(true); } |