diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 10:46:32 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 10:46:32 +0200 |
commit | 5447ddd896eb49ea9fd9f9191a277fd1d5730aa3 (patch) | |
tree | 96e09b8fb5d757aafef33da50a93204bae54ba9f /src/crepe/Asset.cpp | |
parent | 0b08b742fffa63188c89d760a5aecd55d585403b (diff) |
add PR #9 comments as code comments
Diffstat (limited to 'src/crepe/Asset.cpp')
-rw-r--r-- | src/crepe/Asset.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crepe/Asset.cpp b/src/crepe/Asset.cpp index 3cbed0b..8a2a11c 100644 --- a/src/crepe/Asset.cpp +++ b/src/crepe/Asset.cpp @@ -5,7 +5,8 @@ using namespace crepe; Asset::Asset(const std::string & src) { - //this->src = std::filesystem::canonical(src); + // FIXME: restore this + // this->src = std::filesystem::canonical(src); this->src = src; this->file = std::ifstream(this->src, std::ios::in | std::ios::binary); } |