From 20edc0436f2d097158d446f2a7ee3619c868a0de Mon Sep 17 00:00:00 2001 From: wally4000 Date: Sun, 28 Jul 2024 20:22:39 +1000 Subject: [PATCH] Fix EDRam and Silent switch in CMake --- Source/CMakeLists.txt | 2 +- Source/SysPSP/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index e324a4bc..c4e2a21b 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -30,7 +30,7 @@ else() message("Release Build") set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE) add_compile_definitions(DAEDALUS_CONFIG_VERSION="Release") ## Show the build type in the UI - option(DAEDALUS_SILENT "Shhh, no debug console message, on by default" OFF) + option(DAEDALUS_SILENT "Shhh, no debug console message, on by default" ON) endif() #Determine Dynarec compatibility and link in appropriate Dynarec #Todo: Move all relevant Dynarec to the Dynarec/arch folder and enable here when correct platform is detected diff --git a/Source/SysPSP/main.cpp b/Source/SysPSP/main.cpp index 9c9b54bc..3d7a9115 100644 --- a/Source/SysPSP/main.cpp +++ b/Source/SysPSP/main.cpp @@ -131,7 +131,7 @@ static bool Initialize() // Can't use extra memory if ME isn't available PSP_IS_SLIM = true; g32bitColorMode = true; - // sceGeEdramSetSize(4*1024*1024); + sceGeEdramSetSize(4*1024*1024); HAVE_DVE = CModule::Load("Plugins/dvemgr.prx"); if (HAVE_DVE >= 0) PSP_TV_CABLE = pspDveMgrCheckVideoOut();