git » fp-git.git » commit e3deb19

removed dummy comment

author ecalot
2004-07-17 19:01:02 UTC
committer ecalot
2004-07-17 19:01:02 UTC
parent e697d78f95716a742c84c5795f28105b8108df31

removed dummy comment

FP/src/out/output.c +3 -4

diff --git a/FP/src/out/output.c b/FP/src/out/output.c
index eab8eae..101855b 100644
--- a/FP/src/out/output.c
+++ b/FP/src/out/output.c
@@ -77,18 +77,17 @@ outputLoadBitmap(const unsigned char* data, int size,
   * information ti build it invert is 0 when no invertion is needed and 
   * non-zero when an inversion is performed	*/
 
-	/* Dummy function */
 	SDL_Surface* result;
 	int i,j;
 	SDL_Color colors[256];
-																				        
+
 	/* Fill colors with color information */
 	for(i=0;i<256;i++) {
 		colors[i].r=i;
 		colors[i].g=255-i;
 		colors[i].b=255-i;
 	}
-	
+
 	printf("outputLoadBitmap: I'm creating an SDL structure :p\n");
 	printf("outputLoadBitmap: invert=%d. transparent=%d. size=%d\n", invert, firstColorTransparent, size);
 
@@ -157,7 +156,7 @@ SDL_Surface *outputInit()
 	SDL_Color colors[256];
 	SDL_Init(SDL_INIT_TIMER | SDL_INIT_VIDEO);
 	atexit(outputStop);
-																				        
+
 	/* Fill colors with color information */
 	for(i=0;i<256;i++) {
 		colors[i].r=255-i;