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

The lua function forms.drawText() horizontal alignment "right" did the same as "center"
This commit is contained in:
nog5 2018-09-10 10:27:29 +02:00
parent 47a66db995
commit 2dea3e5b53
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;
}
}