Editor/ProjectManager: Be explicit about athena's SeekOrigin type

Allows this code to work if it's ever changed into an enum class.
This commit is contained in:
Lioncash 2019-09-07 21:21:37 -04:00
parent 9c0d13f001
commit c0c6d02c27
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ bool ProjectManager::openProject(hecl::SystemStringView path) {
}
r.reset();
reader.seek(0, athena::Begin);
reader.seek(0, athena::SeekOrigin::Begin);
if (!r.parse(&reader)) {
return makeProj(true);
}