summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/dither.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/dither.js b/js/dither.js
index 37baf01..d3340dc 100644
--- a/js/dither.js
+++ b/js/dither.js
@@ -6,10 +6,10 @@ var dither = {
d: ' ',
p: function(n){
if (0 <= 0 && n < 1) {
- return block.aa[Math.floor(n * 4)]
+ return dither.aa[Math.floor(n * 4)]
}
else {
- return block.aa[Math.floor(n % 4)]
+ return dither.aa[Math.floor(n % 4)]
}
}
}