Updated fzf ignore file, added raylib window title

This commit is contained in:
2026-06-24 10:34:02 +02:00
parent 97f34d72a7
commit 30a37f26c5
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -1,2 +1,3 @@
external/ external/
assets/ assets/
src/roms
+2 -1
View File
@@ -35,12 +35,13 @@ Layout :: struct {
bottom_panel : rl.Rectangle, bottom_panel : rl.Rectangle,
cpu : rl.Rectangle, cpu : rl.Rectangle,
status_bar : rl.Rectangle, status_bar : rl.Rectangle,
info_box : rl.Rectangle,
} }
// Initialize main the gui 'window' // Initialize main the gui 'window'
run_gui :: proc(sim: ^Simulator) { run_gui :: proc(sim: ^Simulator) {
rl.SetConfigFlags({.WINDOW_RESIZABLE}) 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.InitAudioDevice()
rl.SetTargetFPS(60) rl.SetTargetFPS(60)
beep := rl.LoadSound("./assets/sounds/beep.wav") beep := rl.LoadSound("./assets/sounds/beep.wav")