git » fp-git.git » commit 9b528da

invert parameter

author ecalot
2004-06-13 05:37:17 UTC
committer ecalot
2004-06-13 05:37:17 UTC
parent ea95b37a53d29f5102052a5b67f827de865e186e

invert parameter

FP/src/include/output.h +1 -1

diff --git a/FP/src/include/output.h b/FP/src/include/output.h
index 3ba7fa2..4b15f28 100644
--- a/FP/src/include/output.h
+++ b/FP/src/include/output.h
@@ -47,7 +47,7 @@ playWav(tWave sound); /* Starts the reproduction of the sample and returns */
 playMid(tMidi music); /* Starts the music reproduction and returns */
 
 /* Graph */
-void* loadBitmap(unsigned char* data, int h,int w);
+void* loadBitmap(unsigned char* data, int h,int w,int invert); /* invert is 0 when no invertion is needed and non-zero when an inversion is pervormed */
 void freeBitmap(void* image);
 void drawBitmap(void* image,int x, int y);
 clearScreen();