Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
fix quincuncial artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunlebron committed Mar 15, 2015
1 parent bffaa52 commit 5aa3897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game/lua-scripts/lenses/quincuncial.lua
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ function lens_inverse(x,y)
local x0,y0

-- front
if abs(x)+abs(y) <= sqrt2 then
if abs(x)+abs(y) < sqrt2 then
x0, y0 = rotate(x,y,pi/4)
x0 = x0-1

Expand Down

0 comments on commit 5aa3897

Please sign in to comment.