repo: janusweb
action: commit
revision: 
path_from: 
revision_from: a5a7bbc034fd30981f57ddb224726d59ef9d70c3:
path_to: 
revision_to: 
git.thebackupbox.net
janusweb
git clone git://git.thebackupbox.net/janusweb
commit a5a7bbc034fd30981f57ddb224726d59ef9d70c3
Author: James Baicoianu 
Date:   Fri Apr 15 04:42:47 2016 -0700

    sbs3d aspect ratio fix

diff --git a/scripts/image.js b/scripts/image.js
index 4bec79aff5e30a0ac7d7292e3d2bc3841c937247..
index ..be3db272d6759adf8973061796fc262c0bc295fd 100644
--- a/scripts/image.js
+++ b/scripts/image.js
@@ -97,7 +97,7 @@ elation.require(['engine.things.generic'], function() {
         var size = this.getSize(this.texture.image);
         aspect = size.height / size.width;
       }
-      if (this.properties.sbs3d || (this.asset && this.asset.sbs3d)) aspect *= 2;
+      if (this.properties.sbs3d || (this.asset && this.asset.sbs3d)) aspect /= 2;
       if (this.properties.ou3d || (this.asset && this.asset.ou3d)) aspect /= 2;
       return aspect;
     }

-----END OF PAGE-----