commit c5b8595fb50876007fbeb486d0fb82af2e25e7c3
parent fbdb762e20653bd4ecdb08b761c5a287e03443c0
Author: neauoire <aliceffekt@gmail.com>
Date: Sat, 24 Jul 2021 10:27:27 -0700
Reduced PAD, display usage:, and added 2 fonts
Diffstat:
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/projects/fonts/acorn8-italic.uf1 b/projects/fonts/acorn8-italic.uf1
Binary files differ.
diff --git a/projects/fonts/acorn8-regular.uf1 b/projects/fonts/acorn8-regular.uf1
Binary files differ.
diff --git a/src/uxnemu.c b/src/uxnemu.c
@@ -31,7 +31,7 @@ static Apu apu[POLYPHONY];
static Device *devscreen, *devmouse, *devctrl, *devaudio0, *devconsole;
static Uint32 stdin_event;
-#define PAD 16
+#define PAD 4
static Uint8 zoom = 0, debug = 0, reqdraw = 0, bench = 0;
@@ -409,7 +409,7 @@ main(int argc, char **argv)
SDL_CreateThread(stdin_handler, "stdin", NULL);
if(argc < 2)
- return error("Input", "Missing");
+ return error("Input", "usage: uxnemu file.rom");
if(!bootuxn(&u))
return error("Boot", "Failed");
if(!loaduxn(&u, argv[1]))