summaryrefslogtreecommitdiff
path: root/examples/window
diff options
context:
space:
mode:
authorjussi2022-02-21 19:05:05 +0200
committerjussi2022-02-21 19:05:05 +0200
commit612ede6da40550fc0b14c1370f616fc6e83df550 (patch)
tree788e0d00820ee85209506c78ec76d397a617cd03 /examples/window
parent8182a5f1b6c61bdf95d32a4ad102e1762f0d0924 (diff)
downloadreilua-enhanced-612ede6da40550fc0b14c1370f616fc6e83df550.tar.gz
reilua-enhanced-612ede6da40550fc0b14c1370f616fc6e83df550.tar.bz2
reilua-enhanced-612ede6da40550fc0b14c1370f616fc6e83df550.zip
Documentation. waving_cubes example and RL_DrawFPS and RL_ColorFromHSV.
Diffstat (limited to 'examples/window')
-rw-r--r--examples/window/main.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/window/main.lua b/examples/window/main.lua
index d49d96a..ec25dd3 100644
--- a/examples/window/main.lua
+++ b/examples/window/main.lua
@@ -18,6 +18,6 @@ function process( delta )
end
function draw()
- RL_ClearBackground( RAYWHITE );
- RL_DrawText( 0, "Congrats! You created your first window!", textPos, 20, 2, textColor );
+ RL_ClearBackground( RAYWHITE )
+ RL_DrawText( 0, "Congrats! You created your first window!", textPos, 20, 2, textColor )
end