Browse code

Minor updates

Andrew Alderwick authored on 27/06/2021 17:56:21
Showing 2 changed files
... ...
@@ -36,6 +36,7 @@ else
36 36
 	CORE='src/uxn-fast.c'
37 37
 fi
38 38
 
39
+echo "Building.."
39 40
 cc ${CFLAGS} src/uxnasm.c -o bin/uxnasm
40 41
 cc ${CFLAGS} ${CORE} src/devices/ppu.c src/devices/apu.c src/uxnemu.c ${UXNEMU_LDFLAGS} -o bin/uxnemu
41 42
 cc ${CFLAGS} ${CORE} src/uxncli.c -o bin/uxncli
... ...
@@ -41,7 +41,7 @@ static const char *errors[] = {"underflow", "overflow", "division by zero"};
41 41
 int
42 42
 haltuxn(Uxn *u, Uint8 error, char *name, int id)
43 43
 {
44
-	fprintf(stderr,"Halted: %s %s#%04x, at 0x%04x\n", name, errors[error - 1], id, u->ram.ptr);
44
+	fprintf(stderr, "Halted: %s %s#%04x, at 0x%04x\n", name, errors[error - 1], id, u->ram.ptr);
45 45
 	u->ram.ptr = 0;
46 46
 	return 0;
47 47
 }