Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/base/CreatePBP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ macro(create_pbp_file)
endif()

if (NOT ${ARG_MEMSIZE})
set(ARG_MEMSIZE "1")
set(ARG_MEMSIZE "2")
endif()

if(PBOOT)
Expand Down
3 changes: 2 additions & 1 deletion src/base/build.mak
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ EXPAND_MEMORY = 0
# user memory partition on PSP-1000, making MEMSIZE obsolete.
# It is now an opt-out policy with PSP_LARGE_MEMORY=0
ifeq ($(shell test $(PSP_FW_VERSION) -gt 390; echo $$?),0)
EXPAND_MEMORY = 1
EXPAND_MEMORY = 2
ifeq ($(PSP_LARGE_MEMORY),1)
$(warning "PSP_LARGE_MEMORY" flag is not necessary targeting firmware versions above 3.90)
EXPAND_MEMORY = 1
else ifeq ($(PSP_LARGE_MEMORY),0)
EXPAND_MEMORY = 0
else ifeq ($(PSP_LARGE_MEMORY),2)
Expand Down
Loading