#ifndef WMF_AMIGA_INC
#define WMF_AMIGA_INC 1

/* Fixed Amiga window dimensions, for now. */
#define WINDOWX 400
#define WINDOWY 400

/* Fixed Amiga Screen mode info. */
#define SCREENX        WINDOWX
#define SCREENY        WINDOWY
#define SCREEN_DEPTH   4
#define NUM_COLORS     (1<<SCREEN_DEPTH)
#define BITPLANE_SIZE  ((SCREENX*SCREENY)/8 + ((SCREENX*SCREENY)%8))

/* Default to non-interlaced screen - double tall pixels. */
#define INTERLACED     1


#endif
