diff options
| author | Indrajith K L | 2025-11-04 17:32:33 +0530 |
|---|---|---|
| committer | GitHub | 2025-11-04 17:32:33 +0530 |
| commit | 2d565e5bcb0e2eab93d9d1bab520bbbaf7457a07 (patch) | |
| tree | 78b7f13909d3246d08d8c2e4b03f3798a3705ca4 /src/text.c | |
| parent | cc4a5f53098dfdaf8cbebe81c3e34658694a2916 (diff) | |
| parent | 087700245e14273a498d1dd2f79f2698e56f94e0 (diff) | |
| download | reilua-enhanced-2d565e5bcb0e2eab93d9d1bab520bbbaf7457a07.tar.gz reilua-enhanced-2d565e5bcb0e2eab93d9d1bab520bbbaf7457a07.tar.bz2 reilua-enhanced-2d565e5bcb0e2eab93d9d1bab520bbbaf7457a07.zip | |
Merge pull request #7 from cooljith91112/feature/font-updates
Use Oleaguid as default font
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -495,7 +495,7 @@ int ltextDrawText( lua_State* L ) { float fontSize = luaL_checknumber( L, 3 ); Color tint = uluaGetColor( L, 4 ); - DrawText( luaL_checkstring( L, 1 ), position.x, position.y, fontSize, tint ); + DrawTextEx( state->defaultFont, luaL_checkstring( L, 1 ), position, fontSize, fontSize/10, tint ); return 0; } |
