mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
UWP iso-loading fix
Having override:// as a fake file name was no good, Path would remove one slash.
This commit is contained in:
parent
66b7e21676
commit
cbbe458829
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ void PPSSPP_UWPMain::OnSuspend() {
|
|||
void PPSSPP_UWPMain::LoadStorageFile(StorageFile ^file) {
|
||||
std::unique_ptr<FileLoaderFactory> factory(new StorageFileLoaderFactory(file, IdentifiedFileType::PSP_ISO));
|
||||
RegisterFileLoaderFactory("override://", std::move(factory));
|
||||
NativeMessageReceived("boot", "override://");
|
||||
NativeMessageReceived("boot", "override://file");
|
||||
}
|
||||
|
||||
UWPGraphicsContext::UWPGraphicsContext(std::shared_ptr<DX::DeviceResources> resources) {
|
||||
|
|
Loading…
Add table
Reference in a new issue