commit e6d8de4

Devine Lu Linvega  ·  2026-04-23 22:46:32 +0000 UTC
parent ffb7e74
Removed return value in console_input
1 files changed,  +1, -2
+1, -2
 1@@ -137,14 +137,13 @@ static void system_deo_print(void) { system_print("WST", 0), system_print("RST",
 2 #define CONSOLE_EOA 0x3
 3 #define CONSOLE_END 0x4
 4 
 5-static unsigned int
 6+static void
 7 console_input(int c, unsigned int type)
 8 {
 9 	if(c == EOF) c = 0, type = CONSOLE_END;
10 	dev[0x12] = c, dev[0x17] = type;
11 	if(console_vector)
12 		uxn_eval(console_vector);
13-	return type != CONSOLE_END;
14 }
15 
16 #undef _POSIX_C_SOURCE