chore: remove some magic constants

This commit is contained in:
2022-01-12 00:46:20 -04:00
parent 3596caf106
commit 769c67b9d4
2 changed files with 7 additions and 4 deletions

View File

@@ -8,6 +8,9 @@ const Scheduler = @import("scheduler.zig").Scheduler;
const Timer = std.time.Timer;
const window_scale = 3;
const gba_width = @import("ppu.zig").width;
const gba_height = @import("ppu.zig").height;
const buf_pitch = @import("ppu.zig").buf_pitch;
pub fn main() anyerror!void {
@@ -49,8 +52,8 @@ pub fn main() anyerror!void {
"Gameboy Advance Emulator",
SDL.SDL_WINDOWPOS_CENTERED,
SDL.SDL_WINDOWPOS_CENTERED,
240 * 3,
160 * 3,
gba_width * window_scale,
gba_height * window_scale,
SDL.SDL_WINDOW_SHOWN,
) orelse sdlPanic();
defer SDL.SDL_DestroyWindow(window);