summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorjussi2023-11-01 23:36:31 +0200
committerjussi2023-11-01 23:36:31 +0200
commite61823b8bb69e258370503df7969e4e3c2089e2d (patch)
treead05d732eb01fbfe584e403ca1d7a9c885bf1a5c /examples
parentdfd66512d7d8caf5d75bfaec167cb81b9bd0b26f (diff)
downloadreilua-enhanced-e61823b8bb69e258370503df7969e4e3c2089e2d.tar.gz
reilua-enhanced-e61823b8bb69e258370503df7969e4e3c2089e2d.tar.bz2
reilua-enhanced-e61823b8bb69e258370503df7969e4e3c2089e2d.zip
LoadFontEx fix. DrawTextBoxed and DrawTextBoxedSelectable From raylib [text] example - Rectangle bounds.
Diffstat (limited to 'examples')
-rw-r--r--examples/window/main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/window/main.lua b/examples/window/main.lua
index 3e10f34..63c18d7 100644
--- a/examples/window/main.lua
+++ b/examples/window/main.lua
@@ -17,7 +17,7 @@ function RL.process( delta )
end
if RL.IsKeyPressed( RL.KEY_SPACE ) then
- textColor = RL.BLACK
+ textColor = RL.RED
textPos = { 192, 200 }
end
end