* Localize codepoint variable

This commit is contained in:
Nils Dagsson Moskopp 2023-09-04 19:10:51 +02:00
parent 7d36959d1e
commit f7e4aa738c
Signed by: erle
GPG Key ID: A3BC671C35191080
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ hexfont.load_glyphs = function(self, iterator)
local codepoint_hex, bitmap_hex = line:match(
"([0123456789ABCDEF]+):([01234567890ABCDEF]+)"
)
codepoint = tonumber(codepoint_hex, 16)
local codepoint = tonumber(codepoint_hex, 16)
self[codepoint] = bitmap_hex
end
end