diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-01-13 22:05:53 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-02-06 22:20:57 -0300 |
commit | 0ed5d728ca12e407685b62802dec69b455f1a528 (patch) | |
tree | d421d986e0a250cea73bd2675ec234af29a96997 /src/core/core.cpp | |
parent | 84412591c97e88b927c44b2517d70381608f1a24 (diff) |
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 572814e4b5..c8d7c442a5 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -175,6 +175,9 @@ struct System::Impl { return static_cast<ResultStatus>(static_cast<u32>(ResultStatus::ErrorLoader) + static_cast<u32>(load_result)); } + + renderer->Rasterizer().LoadDiskResources(); + status = ResultStatus::Success; return status; } |