From d84dda6c9bd3a64b9b656f7fff025fbf1cccd939 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Tue, 3 Sep 2024 20:00:03 +0300 Subject: [PATCH] libSceCesCs needed for blue reflection --- src/emulator.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/emulator.cpp b/src/emulator.cpp index 30fc66c4d..7cc7fa637 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -205,7 +205,7 @@ void Emulator::Run(const std::filesystem::path& file) { } void Emulator::LoadSystemModules(const std::filesystem::path& file) { - constexpr std::array ModulesToLoad{ + constexpr std::array ModulesToLoad{ {{"libSceNgs2.sprx", &Libraries::Ngs2::RegisterlibSceNgs2}, {"libSceFiber.sprx", nullptr}, {"libSceUlt.sprx", nullptr}, @@ -216,7 +216,8 @@ void Emulator::LoadSystemModules(const std::filesystem::path& file) { {"libSceRtc.sprx", &Libraries::Rtc::RegisterlibSceRtc}, {"libSceJpegEnc.sprx", nullptr}, {"libSceFont.sprx", nullptr}, - {"libSceRazorCpu.sprx", nullptr}} + {"libSceRazorCpu.sprx", nullptr}, + {"libSceCesCs.sprx", nullptr}} }; std::vector found_modules;