summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-15 22:04:23 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-17 20:13:23 +0100
commit87a4a9470f0c81f27322f044cf0837fff21ad89e (patch)
tree9e1866e7d2977eb22cb9932bbe10ec1a1b2852dd /src
parent1dc40e9c0e2758619ce5bda802cd32371aee5829 (diff)
Add ReelAsset::unset_entry_point().
Diffstat (limited to 'src')
-rw-r--r--src/reel_asset.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/reel_asset.h b/src/reel_asset.h
index 654b5a97..daf2220a 100644
--- a/src/reel_asset.h
+++ b/src/reel_asset.h
@@ -82,6 +82,10 @@ public:
_entry_point = e;
}
+ void unset_entry_point () {
+ _entry_point = boost::none;
+ }
+
boost::optional<int64_t> entry_point () const {
return _entry_point;
}