Merge pull request #6 from jmschrack/patch-1

Added missing "$" to variable name on line 819
This commit is contained in:
VoidVolker 2017-01-21 00:23:28 +03:00 committed by GitHub
commit 8c7c302af0
1 changed files with 1 additions and 1 deletions

View File

@ -816,7 +816,7 @@ debugMsg "Section: Slicer B"
zoomPixels(){ # zoom tileSize
local zoom=$1
local pixels=$2
if [ "zoom" -ne 0 ]
if [ "$zoom" -ne 0 ]
then
let "pixels = pixels * 100"
for(( i=0; i<zoom; i++ ))