summaryrefslogtreecommitdiff
path: root/src/asset_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/asset_map.h')
-rw-r--r--src/asset_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/asset_map.h b/src/asset_map.h
index 5238b96b..dcd0f961 100644
--- a/src/asset_map.h
+++ b/src/asset_map.h
@@ -54,8 +54,8 @@ public:
explicit AssetMap(boost::filesystem::path path);
- boost::optional<boost::filesystem::path> path() const {
- return _path;
+ boost::optional<boost::filesystem::path> file() const {
+ return _file;
}
std::map<std::string, boost::filesystem::path> asset_ids_and_paths() const;
@@ -99,7 +99,7 @@ public:
private:
std::vector<Asset> _assets;
- mutable boost::optional<boost::filesystem::path> _path;
+ mutable boost::optional<boost::filesystem::path> _file;
};