SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 240d8d1ffaf859db726e1e52664ef0134e47e1fd parent 3bad68f2ab8fd5d69dc4186eef3ae18795fca621 Author: Lior Halphon <LIJI32@gmail.com> Date: Sat, 12 Aug 2023 13:40:16 +0300 Silence warning Diffstat:
| M | Cocoa/Document.m | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Cocoa/Document.m b/Cocoa/Document.m @@ -607,7 +607,9 @@ static unsigned *multiplication_table_for_frequency(unsigned frequency) } if (_running) return; _running = true; - [_emulationThread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil] start]; + NSThread *emulationThraed = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil]; + _emulationThread = emulationThraed; + [emulationThraed start]; } - (void) stop
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.