uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit eb8c803b35b148ebd571184d0ef114427cb0ee75
parent 7b5ad795f8cfa933a9af43fcb777c3febf51d2ad
Author: Andrew Alderwick <andrew@alderwick.co.uk>
Date:   Mon, 28 Jun 2021 21:57:30 +0100

Renamed function

Diffstat:
Msrc/uxnemu.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/uxnemu.c b/src/uxnemu.c @@ -330,7 +330,7 @@ nil_talk(Device *d, Uint8 b0, Uint8 w) #pragma mark - Generics static int -in_reader(void *p) +stdin_handler(void *p) { SDL_Event event; event.type = stdin_event; @@ -403,7 +403,7 @@ main(int argc, char **argv) zoom = 2; stdin_event = SDL_RegisterEvents(1); - SDL_CreateThread(in_reader, "stdin", NULL); + SDL_CreateThread(stdin_handler, "stdin", NULL); if(argc < 2) return error("Input", "Missing");