mirror of https://github.com/odrling/Aegisub
parent
1e4a5b8050
commit
3784a131dd
|
@ -884,8 +884,8 @@ void AssDialogueBlockDrawing::MultiplyCoords(double x,double y) {
|
||||||
if (cur.IsNumber()) {
|
if (cur.IsNumber()) {
|
||||||
// Multiply it
|
// Multiply it
|
||||||
cur.ToLong(&temp);
|
cur.ToLong(&temp);
|
||||||
if (isX) temp = long int(temp*x + 0.5);
|
if (isX) temp = (long int)(temp*x + 0.5);
|
||||||
else temp = long int(temp*y + 0.5);
|
else temp = (long int)(temp*y + 0.5);
|
||||||
|
|
||||||
// Write back to list
|
// Write back to list
|
||||||
final += wxString::Format(_T("%i "),temp);
|
final += wxString::Format(_T("%i "),temp);
|
||||||
|
|
Loading…
Reference in New Issue