From 645ef429bc0a688f11e0ac1b35248490b4e527d7 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Fri, 23 Aug 2024 14:25:18 +0300 Subject: [PATCH] Oops --- AppleCommon/GBViewBase.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppleCommon/GBViewBase.m b/AppleCommon/GBViewBase.m index 3eb5b6d51..21de70ea7 100644 --- a/AppleCommon/GBViewBase.m +++ b/AppleCommon/GBViewBase.m @@ -45,7 +45,7 @@ - (void) createInternalView - (uint32_t *)currentBuffer { - if (unlikely(_parent)) { + if (GB_unlikely(_parent)) { return [_parent currentBuffer]; } return _imageBuffers[_currentBuffer]; @@ -53,7 +53,7 @@ - (uint32_t *)currentBuffer - (uint32_t *)previousBuffer { - if (unlikely(_parent)) { + if (GB_unlikely(_parent)) { return [_parent previousBuffer]; } return _imageBuffers[(_currentBuffer + 2) % self.numberOfBuffers]; @@ -74,7 +74,7 @@ - (void) setFrameBlendingMode:(GB_frame_blending_mode_t)frameBlendingMode - (GB_frame_blending_mode_t)frameBlendingMode { - if (unlikely(_parent)) { + if (GB_unlikely(_parent)) { return [_parent frameBlendingMode]; } if (_frameBlendingMode == GB_FRAME_BLENDING_MODE_ACCURATE) {