summaryrefslogtreecommitdiff
path: root/src/main.odin
diff options
context:
space:
mode:
authorSan Jacobs2025-07-05 15:09:26 +0200
committerSan Jacobs2025-07-05 15:09:26 +0200
commit88bc3cd653e033eb87d981893c53a903121b9ce8 (patch)
treef557c05aceb862c064eed202c86836d34d29e160 /src/main.odin
parent2d564ef05ec79e2f82a0a692739de54120b1c16a (diff)
downloaddtw-demo-88bc3cd653e033eb87d981893c53a903121b9ce8.tar.gz
dtw-demo-88bc3cd653e033eb87d981893c53a903121b9ce8.tar.bz2
dtw-demo-88bc3cd653e033eb87d981893c53a903121b9ce8.zip
Time to test on the shitty laptop
Diffstat (limited to 'src/main.odin')
-rw-r--r--src/main.odin20
1 files changed, 1 insertions, 19 deletions
diff --git a/src/main.odin b/src/main.odin
index d50715f..28208b0 100644
--- a/src/main.odin
+++ b/src/main.odin
@@ -527,24 +527,6 @@ init_slides :: proc() {
append(&data_frames, d)
append(&waveform_path_frames, wave_path)
append(&waveform_warped_frames, wave_warp)
-
- // ###############################
- append(&slides, c)
- append(&data_frames, d)
- append(&waveform_path_frames, wave_path)
- append(&waveform_warped_frames, wave_warp)
-
- // ###############################
- append(&slides, c)
- append(&data_frames, d)
- append(&waveform_path_frames, wave_path)
- append(&waveform_warped_frames, wave_warp)
-
- // ###############################
- append(&slides, c)
- append(&data_frames, d)
- append(&waveform_path_frames, wave_path)
- append(&waveform_warped_frames, wave_warp)
}
rect_from_index :: proc(i : int, thickness : f32 = 0) -> rl.Rectangle {
@@ -835,7 +817,7 @@ main :: proc() {
init_slides()
rl.SetConfigFlags({.WINDOW_RESIZABLE})
- rl.InitWindow(1920, 1080, "BSC 2025 Presentation")
+ rl.InitWindow(1920, 1080, "DTW Demonstration")
rl.SetTargetFPS(60)
rl.SetExitKey(nil)