core: Fix mmap being unable to map GPU memory

This commit is contained in:
Daniel R.
2024-10-12 16:35:12 +02:00
parent b412cb4cca
commit 7c00ac637a
4 changed files with 23 additions and 24 deletions

View File

@@ -28,7 +28,7 @@ enum class MemoryProt : u32 {
CpuReadWrite = 2,
GpuRead = 16,
GpuWrite = 32,
GpuReadWrite = 38,
GpuReadWrite = 48,
};
DECLARE_ENUM_FLAG_OPERATORS(MemoryProt)