git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit 976fe7a3378f42a40d84ecb8fe17470b259451b8
parent 1400bd40e8d2aabcac8bc530f2b36c4e62191310
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Sun,  8 Jun 2025 01:30:17 +0300

The sideview shouldn't automatically scroll

Diffstat:
MCocoa/Document.m4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Cocoa/Document.m b/Cocoa/Document.m @@ -1568,7 +1568,9 @@ enum GBWindowResizeAction [self reloadVRAMData: nil]; [textView.textStorage appendAttributedString:_pendingConsoleOutput]; - [textView scrollToEndOfDocument:nil]; + if (!_logToSideView) { + [textView scrollToEndOfDocument:nil]; + } if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DeveloperMode"]) { [self.consoleWindow orderFront:nil]; }

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.