From b246678c8c7f028e7133981336c246197646608b Mon Sep 17 00:00:00 2001 From: BreadFish64 Date: Wed, 15 Aug 2018 12:12:19 -0500 Subject: [PATCH] Fix spelling in assert macro --- Source/Core/Common/CodeBlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/CodeBlock.h b/Source/Core/Common/CodeBlock.h index 19fc6be433..af86cc9913 100644 --- a/Source/Core/Common/CodeBlock.h +++ b/Source/Core/Common/CodeBlock.h @@ -102,7 +102,7 @@ public: bool HasChildren() const { return region_size != total_region_size; } u8* AllocChildCodeSpace(size_t child_size) { - ASSERT_MSG(DYNA_REG, child_size < GetSpaceLeft(), "Insufficient space for child allocation."); + ASSERT_MSG(DYNA_REC, child_size < GetSpaceLeft(), "Insufficient space for child allocation."); u8* child_region = region + region_size - child_size; region_size -= child_size; return child_region;