summaryrefslogtreecommitdiff
path: root/sources/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sources/main.c')
-rw-r--r--sources/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/main.c b/sources/main.c
index ee07e0b..4d5497c 100644
--- a/sources/main.c
+++ b/sources/main.c
@@ -20,8 +20,8 @@ EM_BOOL main_loop_web(double time, void* userData) {
s7_call(s7, s7_update_fn, s7_list(s7, 0));
BeginDrawing();
- ClearBackground(RAYWHITE);
- s7_call(s7, s7_draw_fn, s7_list(s7, 0));
+ ClearBackground(BLUE);
+ //s7_call(s7, s7_draw_fn, s7_list(s7, 0));
EndDrawing();
return EM_TRUE;
}
@@ -40,7 +40,7 @@ void main_loop(){
int main(int argc, char* argv[]) {
s7 = s7_init();
- // rl_text_define_methods(s7);
+ rl_text_define_methods(s7);
const int screen_width = 800;
const int screen_height = 600;