diff options
| author | jussi | 2025-06-11 22:44:39 +0300 |
|---|---|---|
| committer | jussi | 2025-06-11 22:44:39 +0300 |
| commit | 15deeccc4bcbe5b68f002f8cc91ee4ed8ced68fb (patch) | |
| tree | 3e4fc6739a32d947909e54eb4301cd26bc4828d7 /src/lua_core.c | |
| parent | a38e76873b5ca3080c8046ae4759866d8cccc4e5 (diff) | |
| download | reilua-enhanced-15deeccc4bcbe5b68f002f8cc91ee4ed8ced68fb.tar.gz reilua-enhanced-15deeccc4bcbe5b68f002f8cc91ee4ed8ced68fb.tar.bz2 reilua-enhanced-15deeccc4bcbe5b68f002f8cc91ee4ed8ced68fb.zip | |
MeasureTextBoxed and DrawTextBoxedEx to DrawTextBoxed.
Diffstat (limited to 'src/lua_core.c')
| -rw-r--r-- | src/lua_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua_core.c b/src/lua_core.c index d039208..c4afe80 100644 --- a/src/lua_core.c +++ b/src/lua_core.c @@ -2222,12 +2222,12 @@ void luaRegister() { assingGlobalFunction( "DrawTextCodepoint", ltextDrawTextCodepoint ); assingGlobalFunction( "DrawTextCodepoints", ltextDrawTextCodepoints ); assingGlobalFunction( "DrawTextBoxed", ltextDrawTextBoxed ); - assingGlobalFunction( "DrawTextBoxedEx", ltextDrawTextBoxedEx ); /* Text font info functions. */ assingGlobalFunction( "SetTextLineSpacing", ltextSetTextLineSpacing ); assingGlobalFunction( "GetTextLineSpacing", ltextGetTextLineSpacing ); assingGlobalFunction( "MeasureText", ltextMeasureText ); assingGlobalFunction( "MeasureTextEx", ltextMeasureTextEx ); + assingGlobalFunction( "MeasureTextBoxed", ltextMeasureTextBoxed ); assingGlobalFunction( "GetGlyphIndex", ltextGetGlyphIndex ); assingGlobalFunction( "GetGlyphInfo", ltextGetGlyphInfo ); assingGlobalFunction( "GetGlyphInfoByIndex", ltextGetGlyphInfoByIndex ); |
