aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSan Jacobs2023-08-17 02:35:08 +0200
committerSan Jacobs2023-08-17 02:35:08 +0200
commit408c473839fcc8bdb0f7ac843031507ae99e33f0 (patch)
tree070f361c7be0730b2808cba85db813be07584c78 /src
parenta7c2d13bcca784350d851b665b8a19697e113b34 (diff)
downloadsatscalc-408c473839fcc8bdb0f7ac843031507ae99e33f0.tar.gz
satscalc-408c473839fcc8bdb0f7ac843031507ae99e33f0.tar.bz2
satscalc-408c473839fcc8bdb0f7ac843031507ae99e33f0.zip
Made it easier to switch back to old unfinished UI for reference
Diffstat (limited to 'src')
-rw-r--r--src/main.odin5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.odin b/src/main.odin
index 17517c7..1657c0f 100644
--- a/src/main.odin
+++ b/src/main.odin
@@ -133,6 +133,7 @@ main :: proc() {
ClearBackground(BGCOLOR)
+when true {
// hotloop
oui.begin_layout()
@@ -157,7 +158,7 @@ main :: proc() {
// DRAW HERE OR BELOW
oui.process()
- /*
+} else {
DrawTextEx(font, "Date", {20, 8}, font_size, 0, RAYWHITE);
DrawTextEx(font, "Calltime", {105, 8}, font_size, 0, RAYWHITE);
DrawTextEx(font, "Wraptime", {f32(width)-83, 8}, font_size, 0, RAYWHITE);
@@ -211,7 +212,7 @@ main :: proc() {
DrawTextEx(small_font, total_sum, {f32(width)-120, f32(height)-43}, small_font_size, 0, RAYWHITE);
DrawTextEx(big_font, inc_soc, {f32(width)-120, f32(height)-29}, big_font_size, 0, RAYWHITE);
- */
+}
EndDrawing()
}
}