From 30a37f26c5e0d3cd880a39fca1f5048fdbf53abc Mon Sep 17 00:00:00 2001 From: Jason Hilder Date: Wed, 24 Jun 2026 10:34:02 +0200 Subject: [PATCH] Updated fzf ignore file, added raylib window title --- .ignore | 1 + src/simulator/gui.odin | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.ignore b/.ignore index 542fc46..62de759 100644 --- a/.ignore +++ b/.ignore @@ -1,2 +1,3 @@ external/ assets/ +src/roms diff --git a/src/simulator/gui.odin b/src/simulator/gui.odin index 6e7cd34..cda4dd5 100644 --- a/src/simulator/gui.odin +++ b/src/simulator/gui.odin @@ -35,12 +35,13 @@ Layout :: struct { bottom_panel : rl.Rectangle, cpu : rl.Rectangle, status_bar : rl.Rectangle, + info_box : rl.Rectangle, } // Initialize main the gui 'window' run_gui :: proc(sim: ^Simulator) { rl.SetConfigFlags({.WINDOW_RESIZABLE}) - rl.InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "raylib") + rl.InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "Octal Cookie - Chip 8 Simulator") rl.InitAudioDevice() rl.SetTargetFPS(60) beep := rl.LoadSound("./assets/sounds/beep.wav")