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:
parent
47a66db995
commit
2dea3e5b53
|
@ -346,7 +346,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
x -= sizeOfText.Width / 2;
|
||||
break;
|
||||
case "right":
|
||||
x -= sizeOfText.Width / 2;
|
||||
x -= sizeOfText.Width;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue