Browse code

Removed compiler warning about unused variable.

Andrew Alderwick authored on 28/03/2021 17:19:36
Showing 1 changed files
... ...
@@ -424,6 +424,7 @@ datetime_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
424 424
 	Uint8 *m = u->ram.dat;
425 425
 	time_t seconds = time(NULL);
426 426
 	struct tm *t = localtime(&seconds);
427
+	(void)b0;
427 428
 	t->tm_year += 1900;
428 429
 	m[ptr + 0] = (t->tm_year & 0xff00) >> 8;
429 430
 	m[ptr + 1] = t->tm_year & 0xff;