diff options
Diffstat (limited to 'src/sound_asset_writer.cc')
| -rw-r--r-- | src/sound_asset_writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound_asset_writer.cc b/src/sound_asset_writer.cc index f24605bb..02029f18 100644 --- a/src/sound_asset_writer.cc +++ b/src/sound_asset_writer.cc @@ -108,7 +108,7 @@ SoundAssetWriter::write_current_frame () ++_frames_written; } -void +bool SoundAssetWriter::finalize () { if (_frame_buffer_offset > 0) { @@ -120,5 +120,5 @@ SoundAssetWriter::finalize () } _sound_asset->_intrinsic_duration = _frames_written; - AssetWriter::finalize (); + return AssetWriter::finalize (); } |
