diff options
author | bunnei <bunneidev@gmail.com> | 2021-03-21 23:47:05 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-03-21 23:47:05 +0100 |
commit | fc5205fc84bf989b0d4b87f06d084942b7e04cea (patch) | |
tree | a1495e81a6b167b1ffc04aac95fef5a23954b9bb | |
parent | hle: kernel: k_memory_layout: Move KMemoryRegionAllocator out of global. (diff) | |
download | yuzu-fc5205fc84bf989b0d4b87f06d084942b7e04cea.tar yuzu-fc5205fc84bf989b0d4b87f06d084942b7e04cea.tar.gz yuzu-fc5205fc84bf989b0d4b87f06d084942b7e04cea.tar.bz2 yuzu-fc5205fc84bf989b0d4b87f06d084942b7e04cea.tar.lz yuzu-fc5205fc84bf989b0d4b87f06d084942b7e04cea.tar.xz yuzu-fc5205fc84bf989b0d4b87f06d084942b7e04cea.tar.zst yuzu-fc5205fc84bf989b0d4b87f06d084942b7e04cea.zip |
-rw-r--r-- | src/core/hle/kernel/k_memory_region_type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_memory_region_type.h b/src/core/hle/kernel/k_memory_region_type.h index d83e80793..cf2653d28 100644 --- a/src/core/hle/kernel/k_memory_region_type.h +++ b/src/core/hle/kernel/k_memory_region_type.h @@ -279,7 +279,7 @@ static_assert(KMemoryRegionType_BoardDeviceBase.GetValue() == 0x5); #if defined(ARCH_ARM64) #include "core/hle/kernel/arch/arm64/k_memory_region_device_types.inc" #elif defined(ARCH_ARM) -#error "Unimplemented"" +#error "Unimplemented" #else // Default to no architecture devices. constexpr auto NumArchitectureDeviceRegions = 0; |