mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
Fix many warnings about implicit integer conversions when compiling for 64 bits.
--HG-- branch : minor
This commit is contained in:
@@ -60,7 +60,7 @@ int w_Font_getWrap(lua_State *L)
|
||||
|
||||
luax_catchexcept(L, [&]() {
|
||||
t->getWrap(str, wrap, lines, &widths);
|
||||
numlines = lines.size();
|
||||
numlines = (int) lines.size();
|
||||
});
|
||||
|
||||
for (int width : widths)
|
||||
|
||||
Reference in New Issue
Block a user