From a635fea52f9e06a4848b85d55d1af3c5c38a38e4 Mon Sep 17 00:00:00 2001 From: neauoire Date: Thu, 28 Oct 2021 09:27:39 -0700 Subject: [PATCH] Use rom name for window title --- src/uxnemu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uxnemu.c b/src/uxnemu.c index 6aae2dc..f2c7292 100644 --- a/src/uxnemu.c +++ b/src/uxnemu.c @@ -243,7 +243,7 @@ quit(void) } static int -init(void) +init(char *filepath) { SDL_AudioSpec as; SDL_zero(as); @@ -262,7 +262,7 @@ init(void) if(!audio_id) error("sdl_audio", SDL_GetError()); } - gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, (WIDTH + PAD * 2) * zoom, (HEIGHT + PAD * 2) * zoom, SDL_WINDOW_SHOWN); + gWindow = SDL_CreateWindow(filepath, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, (WIDTH + PAD * 2) * zoom, (HEIGHT + PAD * 2) * zoom, SDL_WINDOW_SHOWN); if(gWindow == NULL) return error("sdl_window", SDL_GetError()); gRenderer = SDL_CreateRenderer(gWindow, -1, 0); @@ -603,7 +603,7 @@ main(int argc, char **argv) } else if(!loaded++) { if(!load(&u, argv[i])) return error("Load", "Failed to open rom."); - if(!init()) + if(!init(argv[i])) return error("Init", "Failed to initialize emulator."); if(!set_size(WIDTH, HEIGHT, 0)) return error("Window", "Failed to set window size.");