Skip to content

Commit

Permalink
Merge pull request #9 from turpinator/patch-4
Browse files Browse the repository at this point in the history
Fix default params for ogl.setup()
  • Loading branch information
ObscuritySRL committed Dec 18, 2015
2 parents b421ed8 + 617442f commit 49fae45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/core.simba
Expand Up @@ -841,7 +841,7 @@ begin
glxMapHooks(smart.pid);
end;

function tOGL.setup(funcDimensions:array[0..1] of int32=0;funcViewPort:array[0..3] of int32=[0,0,0,0]):boolean;
function tOGL.setup(funcDimensions:array[0..1] of int32=[0,0];funcViewPort:array[0..3] of int32=[0,0,0,0]):boolean;
begin
clearDebug();
writeLN(formatDateTime('tt',time()),' | ',self.getScriptName(),' > setup');
Expand Down

0 comments on commit 49fae45

Please sign in to comment.