mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-08 09:09:46 +00:00
Fix warning: std::move of const variables
This commit is contained in:
parent
df6bec236f
commit
e635abe552
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue