소스 검색

Fix typo in Scene.hx (#791)

Fix little typo in Scene.hx
Arnaud Duforat 5 년 전
부모
커밋
3a77692afe
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      h2d/Scene.hx

+ 1 - 1
h2d/Scene.hx

@@ -209,7 +209,7 @@ class Scene extends Layers implements h3d.IDrawable implements hxd.SceneEvents.I
 	/**
 		Set the fixed size for the scene, will prevent automatic scene resizing when screen size changes.
 	**/
-	@:deprecated("setFixedSize is deprecated, use scaleMode = Strech(w, h) instead")
+	@:deprecated("setFixedSize is deprecated, use scaleMode = Stretch(w, h) instead")
 	public function setFixedSize( w : Int, h : Int ) {
 		scaleMode = Stretch(w, h);
 	}