diff options
author | Florian Jung <flo@windfisch.org> | 2014-04-05 17:49:02 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2014-04-05 17:49:02 +0200 |
commit | 71215f90c0f159b5aec2775347ccf65dcedd974d (patch) | |
tree | a30109d45acc71ef32d8d00d6bc40e76ef068401 | |
parent | 0617a5b294856eb9defa0e3ff53fda065284a309 (diff) |
slow things down
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -386,8 +386,8 @@ debug(4); //gc_x^=0x80; //gc_y^=0x80; - gc_x = ((signed char)(((unsigned char) gc_x) - 128)) /4; - gc_y = ((signed char)(((unsigned char) gc_y) - 128)) /4; + gc_x = ((signed char)(((unsigned char) gc_x) - 128)) /8; + gc_y = ((signed char)(((unsigned char) gc_y) - 128)) /8; char tmp=0; for (int i=1;i<8;i++) |