mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Merge pull request #7334 from BreadFish64/patch-1
Fix spelling in assert macro
This commit is contained in:
commit
60cddc2e92
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ public:
|
||||||
bool HasChildren() const { return region_size != total_region_size; }
|
bool HasChildren() const { return region_size != total_region_size; }
|
||||||
u8* AllocChildCodeSpace(size_t child_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;
|
u8* child_region = region + region_size - child_size;
|
||||||
region_size -= child_size;
|
region_size -= child_size;
|
||||||
return child_region;
|
return child_region;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue