Add some Latin-1 characters for signs
|
@ -283,3 +283,90 @@ _co
|
||||||
`
|
`
|
||||||
_gr
|
_gr
|
||||||
2
|
2
|
||||||
|
ä
|
||||||
|
_ae
|
||||||
|
5
|
||||||
|
ë
|
||||||
|
_ee
|
||||||
|
5
|
||||||
|
ï
|
||||||
|
_ie
|
||||||
|
5
|
||||||
|
ö
|
||||||
|
_oe
|
||||||
|
5
|
||||||
|
ü
|
||||||
|
_ue
|
||||||
|
5
|
||||||
|
Ä
|
||||||
|
_ae_
|
||||||
|
5
|
||||||
|
Ë
|
||||||
|
_ee_
|
||||||
|
5
|
||||||
|
Ï
|
||||||
|
_ie_
|
||||||
|
5
|
||||||
|
Ö
|
||||||
|
_oe_
|
||||||
|
5
|
||||||
|
Ü
|
||||||
|
_ue_
|
||||||
|
5
|
||||||
|
ß
|
||||||
|
_sz
|
||||||
|
5
|
||||||
|
×
|
||||||
|
_times_cross
|
||||||
|
5
|
||||||
|
·
|
||||||
|
_times_dot
|
||||||
|
5
|
||||||
|
÷
|
||||||
|
_div
|
||||||
|
5
|
||||||
|
»
|
||||||
|
_guill_right
|
||||||
|
5
|
||||||
|
«
|
||||||
|
_guill_left
|
||||||
|
5
|
||||||
|
¢
|
||||||
|
_cent
|
||||||
|
5
|
||||||
|
¿
|
||||||
|
_qu_inv
|
||||||
|
5
|
||||||
|
±
|
||||||
|
_plus_minus
|
||||||
|
5
|
||||||
|
©
|
||||||
|
_copyright
|
||||||
|
5
|
||||||
|
®
|
||||||
|
_registered
|
||||||
|
5
|
||||||
|
¨
|
||||||
|
_diaresis
|
||||||
|
5
|
||||||
|
§
|
||||||
|
_paragraph
|
||||||
|
5
|
||||||
|
¦
|
||||||
|
_broken_bar
|
||||||
|
5
|
||||||
|
¥
|
||||||
|
_yen
|
||||||
|
5
|
||||||
|
¤
|
||||||
|
_currency
|
||||||
|
5
|
||||||
|
£
|
||||||
|
_pound
|
||||||
|
5
|
||||||
|
µ
|
||||||
|
_mu
|
||||||
|
5
|
||||||
|
¡
|
||||||
|
_ex_inv
|
||||||
|
5
|
||||||
|
|
|
@ -56,8 +56,7 @@ local string_to_line_array = function(str)
|
||||||
current = current + 1
|
current = current + 1
|
||||||
tab[current] = ""
|
tab[current] = ""
|
||||||
linechar = 1
|
linechar = 1
|
||||||
-- This check cuts off overlong lines
|
else
|
||||||
elseif linechar <= LINE_LENGTH then
|
|
||||||
tab[current] = tab[current]..char
|
tab[current] = tab[current]..char
|
||||||
linechar = linechar + 1
|
linechar = linechar + 1
|
||||||
end
|
end
|
||||||
|
@ -84,7 +83,7 @@ local generate_line = function(s, ypos)
|
||||||
local width = 0
|
local width = 0
|
||||||
local chars = 0
|
local chars = 0
|
||||||
local printed_char_width = CHAR_WIDTH + 1
|
local printed_char_width = CHAR_WIDTH + 1
|
||||||
while chars <= LINE_LENGTH and i <= #s do
|
while chars < LINE_LENGTH and i <= #s do
|
||||||
local file = nil
|
local file = nil
|
||||||
-- Get and render character
|
-- Get and render character
|
||||||
if charmap[s:sub(i, i)] ~= nil then
|
if charmap[s:sub(i, i)] ~= nil then
|
||||||
|
|
After Width: | Height: | Size: 866 B |
After Width: | Height: | Size: 872 B |
After Width: | Height: | Size: 857 B |
After Width: | Height: | Size: 873 B |
After Width: | Height: | Size: 883 B |
After Width: | Height: | Size: 866 B |
After Width: | Height: | Size: 852 B |
After Width: | Height: | Size: 858 B |
After Width: | Height: | Size: 869 B |
After Width: | Height: | Size: 869 B |
After Width: | Height: | Size: 855 B |
After Width: | Height: | Size: 856 B |
After Width: | Height: | Size: 855 B |
After Width: | Height: | Size: 869 B |
After Width: | Height: | Size: 865 B |
After Width: | Height: | Size: 866 B |
After Width: | Height: | Size: 871 B |
After Width: | Height: | Size: 858 B |
After Width: | Height: | Size: 868 B |
After Width: | Height: | Size: 858 B |
After Width: | Height: | Size: 882 B |
After Width: | Height: | Size: 874 B |
After Width: | Height: | Size: 860 B |
After Width: | Height: | Size: 849 B |
After Width: | Height: | Size: 870 B |
After Width: | Height: | Size: 872 B |
After Width: | Height: | Size: 866 B |