diff options
| author | 2019-01-13 22:05:53 -0300 | |
|---|---|---|
| committer | 2019-02-06 22:20:57 -0300 | |
| commit | 0ed5d728ca12e407685b62802dec69b455f1a528 (patch) | |
| tree | d421d986e0a250cea73bd2675ec234af29a96997 /src/core/core.cpp | |
| parent | file_util: Add shader directory (diff) | |
| download | yuzu-0ed5d728ca12e407685b62802dec69b455f1a528.tar.gz yuzu-0ed5d728ca12e407685b62802dec69b455f1a528.tar.xz yuzu-0ed5d728ca12e407685b62802dec69b455f1a528.zip | |
rasterizer_interface: Add disk cache entry for the rasterizer
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 572814e4b..c8d7c442a 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -175,6 +175,9 @@ struct System::Impl { | |||
| 175 | return static_cast<ResultStatus>(static_cast<u32>(ResultStatus::ErrorLoader) + | 175 | return static_cast<ResultStatus>(static_cast<u32>(ResultStatus::ErrorLoader) + |
| 176 | static_cast<u32>(load_result)); | 176 | static_cast<u32>(load_result)); |
| 177 | } | 177 | } |
| 178 | |||
| 179 | renderer->Rasterizer().LoadDiskResources(); | ||
| 180 | |||
| 178 | status = ResultStatus::Success; | 181 | status = ResultStatus::Success; |
| 179 | return status; | 182 | return status; |
| 180 | } | 183 | } |