Skip to content
Snippets Groups Projects
Commit fc18a2ec authored by dg's avatar dg
Browse files

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@3829 51575b47-30f0-44d4-a5cc-537603b46e54
parent 27bcc1d9
No related branches found
No related tags found
No related merge requests found
......@@ -386,10 +386,11 @@ function _M:setupDisplayMode(reboot, mode)
local _, _, tw, th = gfx.size:find("^([0-9]+)x([0-9]+)$")
tw, th = tonumber(tw), tonumber(th)
if not tw then tw, th = 64, 64 end
local fsize = math.floor(th / 1.5) + 10
local pot_th = math.pow(2, math.ceil(math.log(th-0.1) / math.log(2.0)))
local fsize = math.floor( pot_th/th*(0.7 * th + 5) )
if th <= 20 then
Map:setViewPort(216, 0, self.w - 216, (self.map_h_stop or 80) - 16, tw, th, "/data/font/FSEX300.ttf", th, do_bg)
Map:setViewPort(216, 0, self.w - 216, (self.map_h_stop or 80) - 16, tw, th, "/data/font/FSEX300.ttf", pot_th, do_bg)
else
Map:setViewPort(216, 0, self.w - 216, (self.map_h_stop or 80) - 16, tw, th, nil, fsize, do_bg)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment