diff options
| author | _Tradam <[email protected]> | 2022-01-16 21:54:48 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-16 21:54:48 -0500 |
| commit | cee502089c1e216aa26436a4551fd155b37e559c (patch) | |
| tree | 73f7931a82835dc983f86b2157150cb5a3d87b63 | |
| parent | 5e01d82cd168a716cd6d4528f513765b4da37868 (diff) | |
| download | sample-mruby-gem-cee502089c1e216aa26436a4551fd155b37e559c.tar.gz sample-mruby-gem-cee502089c1e216aa26436a4551fd155b37e559c.zip | |
test
| -rw-r--r-- | src/example.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/example.c b/src/example.c index 7bf3500..0f2cc07 100644 --- a/src/example.c +++ b/src/example.c @@ -15,7 +15,7 @@ mrb_c_method(mrb_state *mrb, mrb_value self) // Initialization //-------------------------------------------------------------------------------------- InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); - +/* #if defined(PLATFORM_WEB) printf("Web!\n"); emscripten_set_main_loop(UpdateDrawFrame, 0, 1); @@ -30,6 +30,10 @@ mrb_c_method(mrb_state *mrb, mrb_value self) UpdateDrawFrame(); } #endif +*/ + while (true) + { + } // De-Initialization //-------------------------------------------------------------------------------------- |
