lua: forms.drawText() horizontal alignment "right" fix (#1316)

The lua function forms.drawText() horizontal alignment "right" did the same as "center"
This commit is contained in:
nog5 2018-09-10 20:18:31 +02:00 committed by feos
parent 11065c46bd
commit c012f56e45
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ namespace BizHawk.Client.EmuHawk
x -= sizeOfText.Width / 2;
break;
case "right":
x -= sizeOfText.Width / 2;
x -= sizeOfText.Width;
break;
}
}