core/libraries/kernel: Fix inaccurate direct memory size

This commit is contained in:
Daniel R. 2024-08-22 21:57:24 +02:00 committed by Daniel R
parent c79b10edc1
commit 20ef4cc420
No known key found for this signature in database
GPG key ID: B8ADC8F57BA18DBA

View file

@ -6,7 +6,7 @@
#include "common/bit_field.h"
#include "common/types.h"
constexpr u64 SCE_KERNEL_MAIN_DMEM_SIZE = 6_GB; // ~ 6GB
constexpr u64 SCE_KERNEL_MAIN_DMEM_SIZE = 4608_MB; // ~ 4.5GB
namespace Libraries::Kernel {