diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-08-07 01:14:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-08-07 01:14:30 +0100 |
| commit | 973bbb7a8b6290b4f4ee06e7ba7e199254525ca2 (patch) | |
| tree | 217609cf30209eba25b7159f93ffa0dd0bedf61c /src/sound_asset.cc | |
| parent | 6b3a021409b55e0b5988a0bb993020f6c0e66276 (diff) | |
Missing audio asset decryption.
Diffstat (limited to 'src/sound_asset.cc')
| -rw-r--r-- | src/sound_asset.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound_asset.cc b/src/sound_asset.cc index 0901e915..0d829b75 100644 --- a/src/sound_asset.cc +++ b/src/sound_asset.cc @@ -300,7 +300,7 @@ shared_ptr<const SoundFrame> SoundAsset::get_frame (int n) const { /* XXX: should add on entry point here? */ - return shared_ptr<const SoundFrame> (new SoundFrame (path().string(), n)); + return shared_ptr<const SoundFrame> (new SoundFrame (path().string(), n, _decryption_context)); } shared_ptr<SoundAssetWriter> |
