mirror of https://github.com/AxioDL/metaforce.git
CDvdFile: Remove const from auto type for MSVC
This commit is contained in:
parent
36bbc5004f
commit
61e656e732
|
@ -96,7 +96,7 @@ std::shared_ptr<IDvdRequest> CDvdFile::AsyncSeekRead(void* buf, u32 len, ESeekOr
|
||||||
}
|
}
|
||||||
|
|
||||||
hecl::ProjectPath CDvdFile::ResolvePath(std::string_view path) {
|
hecl::ProjectPath CDvdFile::ResolvePath(std::string_view path) {
|
||||||
const auto* start = path.begin();
|
auto start = path.begin();
|
||||||
while (*start == '/') {
|
while (*start == '/') {
|
||||||
++start;
|
++start;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue