summaryrefslogtreecommitdiff
path: root/reduced_system_layer.c
diff options
context:
space:
mode:
Diffstat (limited to 'reduced_system_layer.c')
-rwxr-xr-xreduced_system_layer.c26
1 files changed, 19 insertions, 7 deletions
diff --git a/reduced_system_layer.c b/reduced_system_layer.c
index a200695..1e360a1 100755
--- a/reduced_system_layer.c
+++ b/reduced_system_layer.c
@@ -26,6 +26,22 @@
#/
#/ ----------------------------------------------------------------
#/
+#/ To-Do list
+#/
+#/ - Examples
+#/ - Landscape
+#/ - Conway's Game if Life
+#/ - Julia Set
+#/ - Labyrinth
+#/ - Features
+#/ - Sound
+#/ - Clipboard daemon
+#/
+#/ ALSA
+#/ https://www.alsa-project.org/alsa-doc/alsa-lib/_2test_2pcm_min_8c-example.html
+#/
+#/ ----------------------------------------------------------------
+#/
#/ (C) 2024 Mitya Selivanov <guattari.tech>, MIT License
#/
#/ ================================================================
@@ -228,6 +244,7 @@ i32 main(i32 argc, c8 **argv) {
while (!platform.done) {
p_handle_events();
p_render_frame();
+ p_sleep_for(0);
}
p_cleanup();
@@ -240,14 +257,9 @@ i32 main(i32 argc, c8 **argv) {
//
// PLATFORM IMPLEMENTATION
//
-// ----------------------------------------------------------------
-//
-// TODO
-// - Sound
-// - Clipboard daemon
+// ================================================================
//
-// ALSA
-// https://www.alsa-project.org/alsa-doc/alsa-lib/_2test_2pcm_min_8c-example.html
+// Utilities
//
// ================================================================