aboutsummaryrefslogtreecommitdiff
path: root/apps/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/test.c')
-rw-r--r--apps/test.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/test.c b/apps/test.c
index 0fecbf4..efc7432 100644
--- a/apps/test.c
+++ b/apps/test.c
@@ -9,16 +9,10 @@ int main()
print("[test loaded]\n");
struct window *win = gui_new_window();
- u32 color[3] = { 0xff, 0, 0 };
+ u32 color[3] = { 0xff, 0xff, 0xff };
gui_fill(win, color);
- u32 last_time = 0;
while (1) {
- u32 current_time = time();
- if (current_time - last_time > 1000 / 60) { // 60Hz
- win->x += 10;
- };
- last_time = current_time;
yield();
}
return 0;