Fix missing parentheses
This commit is contained in:
parent
2f38abe0d4
commit
df8e9d20f9
@ -121,7 +121,7 @@ function CamCtl:SetNewClip(x, y, w, h)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function CamCtl:PushNewClip(x, y, w, h)
|
function CamCtl:PushNewClip(x, y, w, h)
|
||||||
table.insert(self.ClipStack, {self.XAbsClip, self.YAbsClip, self.W, self.H}
|
table.insert(self.ClipStack, {self.XAbsClip, self.YAbsClip, self.W, self.H})
|
||||||
self:SetNewClip(x, y, w, h)
|
self:SetNewClip(x, y, w, h)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -144,7 +144,7 @@ function CamCtl:SetReClip(x,y,w,h)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function CamCtl:PushReClip(x,y,w,h)
|
function CamCtl:PushReClip(x,y,w,h)
|
||||||
table.insert(self.ClipStack, {self.XAbsClip, self.YAbsClip, self.W, self.H}
|
table.insert(self.ClipStack, {self.XAbsClip, self.YAbsClip, self.W, self.H})
|
||||||
self.SetReClip(x,y,w,h)
|
self.SetReClip(x,y,w,h)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user