diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/window/main.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/window/main.lua b/examples/window/main.lua index 2fcba93..2b4a009 100644 --- a/examples/window/main.lua +++ b/examples/window/main.lua @@ -11,7 +11,6 @@ function RL.init() print( "path", path ) texture = RL.LoadTexture( path ) - print( "texture", texture ) end @@ -33,5 +32,5 @@ end function RL.draw() RL.ClearBackground( RL.RAYWHITE ) RL.DrawTexture( texture, { 20, 20 }, RL.WHITE ) - RL.DrawText( 0, text, textPos, 20, 2, textColor ) + RL.DrawText( RL.fontDefault, text, textPos, 20, 2, textColor ) end |
