diff options
| author | 2016-01-07 20:33:54 +0100 | |
|---|---|---|
| committer | 2016-03-08 22:05:25 +0100 | |
| commit | 4be68dddfbdc7065139351e6e39b5fa97844264a (patch) | |
| tree | 4b020326a58a7a4364b752cb731233cb6c264cd0 /src/core/loader/loader.cpp | |
| parent | Display errors in GUI when loading ROM failed (diff) | |
| download | yuzu-4be68dddfbdc7065139351e6e39b5fa97844264a.tar.gz yuzu-4be68dddfbdc7065139351e6e39b5fa97844264a.tar.xz yuzu-4be68dddfbdc7065139351e6e39b5fa97844264a.zip | |
Improve error report from Init() functions
Add error popup when citra initialization failed
Diffstat (limited to 'src/core/loader/loader.cpp')
| -rw-r--r-- | src/core/loader/loader.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 99f1183ca..b1907cd55 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp | |||
| @@ -140,7 +140,6 @@ ResultStatus LoadFile(const std::string& filename) { | |||
| 140 | ResultStatus result = app_loader.Load(); | 140 | ResultStatus result = app_loader.Load(); |
| 141 | if (ResultStatus::Success == result) { | 141 | if (ResultStatus::Success == result) { |
| 142 | Service::FS::RegisterArchiveType(Common::make_unique<FileSys::ArchiveFactory_RomFS>(app_loader), Service::FS::ArchiveIdCode::RomFS); | 142 | Service::FS::RegisterArchiveType(Common::make_unique<FileSys::ArchiveFactory_RomFS>(app_loader), Service::FS::ArchiveIdCode::RomFS); |
| 143 | return ResultStatus::Success; | ||
| 144 | } | 143 | } |
| 145 | return result; | 144 | return result; |
| 146 | } | 145 | } |