Skip to content

Commit

Permalink
Fix EDRam and Silent switch in CMake
Browse files Browse the repository at this point in the history
  • Loading branch information
wally4000 committed Jul 28, 2024
1 parent c065ed9 commit 20edc04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Source/SysPSP/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 20edc04

Please sign in to comment.