mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
VFS: Use Path for DirectoryAssetReader.
This commit is contained in:
@@ -76,9 +76,9 @@ PPSSPP_UWPMain::PPSSPP_UWPMain(App ^app, const std::shared_ptr<DX::DeviceResourc
|
||||
|
||||
ctx_.reset(new UWPGraphicsContext(deviceResources));
|
||||
|
||||
const std::string &exePath = File::GetExeDirectory();
|
||||
VFSRegister("", new DirectoryAssetReader((exePath + "/Content/").c_str()));
|
||||
VFSRegister("", new DirectoryAssetReader(exePath.c_str()));
|
||||
const Path exePath = Path(File::GetExeDirectory());
|
||||
VFSRegister("", new DirectoryAssetReader(exePath / "Content"));
|
||||
VFSRegister("", new DirectoryAssetReader(exePath));
|
||||
|
||||
wchar_t lcCountry[256];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user