summaryrefslogtreecommitdiff
path: root/sources/main.c
diff options
context:
space:
mode:
authorHenrique Alves <henrique.alves@itsjungle.xyz>2024-04-25 13:33:18 +0300
committerHenrique Alves <henrique.alves@itsjungle.xyz>2024-04-25 13:33:18 +0300
commit3febad74e46d3485f079108b2d30bcde1f6ce58b (patch)
tree2c12173ca6fbf31956ab74c16ffbfc098248da7e /sources/main.c
parent192d71918917ad12063ca6682372dfbc34d06d2c (diff)
downloadgamejam-slgj-2024-3febad74e46d3485f079108b2d30bcde1f6ce58b.tar.gz
gamejam-slgj-2024-3febad74e46d3485f079108b2d30bcde1f6ce58b.tar.bz2
gamejam-slgj-2024-3febad74e46d3485f079108b2d30bcde1f6ce58b.zip
simplifying test
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;