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")