diff options
Diffstat (limited to 'tools/genfont')
-rw-r--r-- | tools/genfont/genfont.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/genfont/genfont.c b/tools/genfont/genfont.c index 980c55b..775d142 100644 --- a/tools/genfont/genfont.c +++ b/tools/genfont/genfont.c @@ -158,13 +158,6 @@ int main(int argc, char *argv[]) } } - // invert image - for(int y=0; y < bitmap->Height(); y++) { - for(int x=0; x < bitmap->Width(); x++) { - bitmap->DrawPixel(x, y, GLCD::cColor(bitmap->GetPixel(x, y)).Invert()); - } - } - if (posX > 0) // write last end marker fprintf(descFile, "%d\n", posX); fileName = outputName + ".pbm"; |