mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-09 08:35:03 -06:00
Fix warning: std::move of const variables
This commit is contained in:
parent
df6bec236f
commit
e635abe552
@ -195,8 +195,8 @@ static error_code prx_load_module(const std::string& vpath, u64 flags, vm::ptr<s
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string vpath0;
|
std::string vpath0;
|
||||||
const std::string path = vfs::get(vpath, nullptr, &vpath0);
|
std::string path = vfs::get(vpath, nullptr, &vpath0);
|
||||||
const std::string name = vpath0.substr(vpath0.find_last_of('/') + 1);
|
std::string name = vpath0.substr(vpath0.find_last_of('/') + 1);
|
||||||
|
|
||||||
bool ignore = false;
|
bool ignore = false;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user