소스 검색

Merge pull request #146 from nicolas-obre/patch-1

Double semicolon
deltakosh 11 년 전
부모
커밋
0a80d1cb5c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Babylon/babylon.engine.js

+ 1 - 1
Babylon/babylon.engine.js

@@ -111,7 +111,7 @@ var BABYLON = BABYLON || {};
     // Properties
     BABYLON.Engine.prototype.getAspectRatio = function (camera) {
         var viewport = camera.viewport;
-        return (this._renderingCanvas.width * viewport.width) / (this._renderingCanvas.height * viewport.height);;
+        return (this._renderingCanvas.width * viewport.width) / (this._renderingCanvas.height * viewport.height);
     };
 
     BABYLON.Engine.prototype.getRenderWidth = function () {