SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 69ed0fcf9c2bbb2ac84226ecea49d45fcf6af33a parent 94db2355b52b140cc147bd13af6c9d9414bd09cf Author: Lior Halphon <LIJI32@gmail.com> Date: Tue, 14 Oct 2025 21:08:57 +0300 Fix SDL builds on unsigned char platforms. Closes #726 Diffstat:
| M | SDL/console.c | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/SDL/console.c b/SDL/console.c @@ -656,7 +656,7 @@ mainloop(char *(*completer)(const char *substring, uintptr_t *context)) else { c = raw_getc(); } - if (c == EOF) { + if (c == (char)EOF) { return 0; }
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.