Reduce fontsize for bbs

This commit is contained in:
dazedanon 2026-02-15 19:04:04 -06:00
parent 1b504b2c81
commit 1cc4dac849

View file

@ -191,7 +191,7 @@ Game_Interpreter.prototype.BBS_DetailData_View = function (_viewData) {
var addText = "";
for (let i = 0; i <= _viewData.text.length - 1; i++)
addText += _viewData.text[i] + "\n";
this.SpriteStr(PN_BbsText, outLineStr + addText, 22, 200 , 225 + 57);
this.SpriteStr(PN_BbsText, outLineStr + addText, 17, 200 , 225 + 57);
if (_viewData.picPath != "")
this.SetSprite(PN_BbsPicture, Menu_H_UIPath + "Search/BbsDetailPic/" + _viewData.picPath , 147 , 160);
}