Bladeren bron

Fix: [Max2D.mod] Corrected SetTransform overload

Ronny Otto 2 jaren geleden
bovenliggende
commit
39429ac0b9
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      max2d.mod/max2d.bmx

+ 1 - 1
max2d.mod/max2d.bmx

@@ -1460,7 +1460,7 @@ about:
 SetTransform is a shortcut for setting both the rotation and
 SetTransform is a shortcut for setting both the rotation and
 scale parameters in Max2D with a single function call.
 scale parameters in Max2D with a single function call.
 End Rem
 End Rem
-Function SetTransform( rotation:Double = 0:Double, scale_x:Double = 1:Double, scale_y:Float = 1:Double )
+Function SetTransform( rotation:Double, scale_x:Double = 1:Double, scale_y:Float = 1:Double )
 	TMax2DGraphics.Current().SetTransform(Float(rotation), Float(scale_x), Float(scale_y))
 	TMax2DGraphics.Current().SetTransform(Float(rotation), Float(scale_x), Float(scale_y))
 End Function
 End Function