SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 645ef429bc0a688f11e0ac1b35248490b4e527d7 parent a7d977a5c5b3c0c48f6bb6f1ed9ab344ecf48b87 Author: Lior Halphon <LIJI32@gmail.com> Date: Fri, 23 Aug 2024 14:25:18 +0300 Oops Diffstat:
| M | AppleCommon/GBViewBase.m | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/AppleCommon/GBViewBase.m b/AppleCommon/GBViewBase.m @@ -45,7 +45,7 @@ - (uint32_t *)currentBuffer { - if (unlikely(_parent)) { + if (GB_unlikely(_parent)) { return [_parent currentBuffer]; } return _imageBuffers[_currentBuffer]; @@ -53,7 +53,7 @@ - (uint32_t *)previousBuffer { - if (unlikely(_parent)) { + if (GB_unlikely(_parent)) { return [_parent previousBuffer]; } return _imageBuffers[(_currentBuffer + 2) % self.numberOfBuffers]; @@ -74,7 +74,7 @@ - (GB_frame_blending_mode_t)frameBlendingMode { - if (unlikely(_parent)) { + if (GB_unlikely(_parent)) { return [_parent frameBlendingMode]; } if (_frameBlendingMode == GB_FRAME_BLENDING_MODE_ACCURATE) {
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.