diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-09-18 23:50:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-09-18 23:50:32 +0100 |
| commit | b8f81f0270229c3a9d923f47ddad39f6ed73d13a (patch) | |
| tree | 81026a07d5b031b100a71774a1d3f62122e1b660 /src/subtitle_asset.h | |
| parent | c23087acc887289f04f927bf7ede352324f4081b (diff) | |
ReelNumber is sometimes a string, it seems.
Diffstat (limited to 'src/subtitle_asset.h')
| -rw-r--r-- | src/subtitle_asset.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/subtitle_asset.h b/src/subtitle_asset.h index 4d62bfb4..d02e364c 100644 --- a/src/subtitle_asset.h +++ b/src/subtitle_asset.h @@ -220,7 +220,8 @@ private: std::string _subtitle_id; std::string _movie_title; - int64_t _reel_number; + /* strangely, this is sometimes a string */ + std::string _reel_number; std::string _language; std::list<boost::shared_ptr<LoadFontNode> > _load_font_nodes; |
