removed #include (leftover from debugging)

This commit is contained in:
Christian Kroll 2011-01-25 23:05:04 +00:00
parent 4920272878
commit af4ff63f2b
1 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,6 @@
#include "../util.h"
#include "../autoconf.h"
#include "../pixel.h"
#include "../joystick/joystick.h"
#include "bitmapscroller.h"
@ -26,7 +25,7 @@ typedef struct bitmap_t
unsigned char nXDomain; /**< Last valid x-coordinate for viewport. */
unsigned char nYDomain; /**< Last valid y-coordinate for viewport. */
unsigned char nChunkDomain; /**< Last valid chunk for viewport. */
unsigned char nChunkCount; /**< Amount of horiz. chunks of the bitmap. */
unsigned char nChunkCount; /**< Amount of horiz. chunks of the bitmap. */
}
bitmap_t;