summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sound_asset.cc3
-rw-r--r--wscript2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/sound_asset.cc b/src/sound_asset.cc
index 014b95a2..e18441c6 100644
--- a/src/sound_asset.cc
+++ b/src/sound_asset.cc
@@ -298,7 +298,8 @@ SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, list<str
shared_ptr<const SoundFrame>
SoundAsset::get_frame (int n) const
{
- return shared_ptr<const SoundFrame> (new SoundFrame (path().string(), n + _entry_point));
+ /* XXX: should add on entry point here? */
+ return shared_ptr<const SoundFrame> (new SoundFrame (path().string(), n));
}
shared_ptr<SoundAssetWriter>
diff --git a/wscript b/wscript
index 39d99b18..19287187 100644
--- a/wscript
+++ b/wscript
@@ -2,7 +2,7 @@ import subprocess
import os
APPNAME = 'libdcp'
-VERSION = '0.42pre'
+VERSION = '0.42'
def options(opt):
opt.load('compiler_cxx')