From c6608748c645dceb46e3ef86a72b43230504f8d9 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Fri, 21 Oct 2022 05:12:04 -0300 Subject: [PATCH] chore: rename title --- src/main.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.zig b/src/main.zig index 732be0d..7f6e334 100644 --- a/src/main.zig +++ b/src/main.zig @@ -70,7 +70,7 @@ pub fn main() anyerror!void { defer SDL.SDL_Quit(); var window = SDL.SDL_CreateWindow( - "Gameboy Advance Emulator", + "ZBA", SDL.SDL_WINDOWPOS_CENTERED, SDL.SDL_WINDOWPOS_CENTERED, gba_width * window_scale, @@ -106,7 +106,7 @@ pub fn main() anyerror!void { SDL.SDL_RenderPresent(renderer); const fps = std.time.ns_per_s / timer.lap(); - const title = std.fmt.bufPrint(&title_buf, "Gameboy Advance Emulator FPS: {d}", .{fps}) catch unreachable; + const title = std.fmt.bufPrint(&title_buf, "ZBA FPS: {d}", .{fps}) catch unreachable; SDL.SDL_SetWindowTitle(window, title.ptr); }