diff options
| author | _Tradam <[email protected]> | 2022-01-13 14:32:35 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-13 14:32:35 -0500 |
| commit | 5e01d82cd168a716cd6d4528f513765b4da37868 (patch) | |
| tree | a98151dda38f55c344143a62ad3b63137e440eee /src | |
| parent | 79708a028f71abc2e178c5aace7613fa5071bc14 (diff) | |
| download | sample-mruby-gem-5e01d82cd168a716cd6d4528f513765b4da37868.tar.gz sample-mruby-gem-5e01d82cd168a716cd6d4528f513765b4da37868.zip | |
.
Diffstat (limited to 'src')
| -rw-r--r-- | src/example.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/example.c b/src/example.c index 4bc14e7..7bf3500 100644 --- a/src/example.c +++ b/src/example.c @@ -17,10 +17,10 @@ mrb_c_method(mrb_state *mrb, mrb_value self) InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); #if defined(PLATFORM_WEB) - printf("Web!"); + printf("Web!\n"); emscripten_set_main_loop(UpdateDrawFrame, 0, 1); #else - printf("Desktop!"); + printf("Desktop!\n"); SetTargetFPS(60); // Set our game to run at 60 frames-per-second //-------------------------------------------------------------------------------------- |
