# HG changeset patch # User Wolfgang Steffens # Date 1337928714 -7200 # Node ID 8e5e3fef16fcab6ead622a5bedd3e4e77ec2820a # Parent bfb759d07288b35b14e9ba213a24de65ffbf6444 Removed lazy update: workaround for R7103 diff -r bfb759d07288 -r 8e5e3fef16fc hedgewars/uStore.pas --- a/hedgewars/uStore.pas Fri May 25 08:42:26 2012 +0200 +++ b/hedgewars/uStore.pas Fri May 25 08:51:54 2012 +0200 @@ -761,11 +761,12 @@ procedure SetScale(f: GLfloat); begin - if cScaleFactor <> f then - begin + // This lazy update conflicts with R7103 at the moment, missing the initial SetScale(2.0) + //if cScaleFactor <> f then + //begin cScaleFactor:=f; UpdateProjection; - end; + //end; end; ////////////////////////////////////////////////////////////////////////////////