diff options
author | jonas <himself@jonasgunz.de> | 2019-02-19 01:46:05 +0100 |
---|---|---|
committer | jonas <himself@jonasgunz.de> | 2019-02-19 01:46:05 +0100 |
commit | 76d8bd47c6f6a47742c986ad9146e6ae59fca053 (patch) | |
tree | 89d632d6b2619abc962686f58e4bee568babe5ca /main.c | |
parent | bf33eefa42ff1654df848e0b0e1ee740afc6f38f (diff) | |
download | AsciiMap-76d8bd47c6f6a47742c986ad9146e6ae59fca053.tar.gz |
Moved all bitmap stuff to bitmap.h / .c
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ #define CHAR_SIZE_Y (2 * CHAR_SIZE_X) const char map[] = {' ', ' ', '.', ',', '`', '-', '~', '"', '*', ':', ';', '<', '!', '/', '?', '%', '&', '=', '$', '#'}; -//const char map[] = {' ', '`', '.', ',', ':', ';', '\'', '+', '#', '@'}; +//const char map[] = {' ', '`', '.', ',', ':', ';', '\"', '+', '#', '@'}; //Routine for flipping bytes uint32_t flip(unsigned char* _v, int _c); |