commit a635fea52f9e06a4848b85d55d1af3c5c38a38e4
parent 33e77e261c4ae2c84ef11e2c1dd529b5e372f062
Author: neauoire <aliceffekt@gmail.com>
Date: Thu, 28 Oct 2021 09:27:39 -0700
Use rom name for window title
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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.");