--- hatari/src/includes/dialog.h 2019/04/01 07:10:00 1.1.1.2 +++ hatari/src/includes/dialog.h 2019/04/01 07:10:18 1.1.1.3 @@ -11,18 +11,6 @@ typedef struct { int nGEMColours; } DLG_TOSGEM; -enum { - GEMRES_640x480, - GEMRES_800x600, - GEMRES_1024x768 -}; - -enum { - GEMCOLOUR_2, - GEMCOLOUR_4, - GEMCOLOUR_16 -}; - /* Dialog Sound */ typedef struct { @@ -174,12 +162,13 @@ typedef struct { } DLG_PRINTER; -/* Dialog CPU */ +/* Dialog System */ typedef struct { - int level; - BOOL compatible; - BOOL address_space_24; -} DLG_CPU; + int nCpuLevel; + BOOL bCompatibleCpu; + BOOL bAddressSpace24; + BOOL bBlitter; /* TRUE if blitter is enabled */ +} DLG_SYSTEM; /* State of system is stored in this structure */ @@ -197,7 +186,7 @@ typedef struct { DLG_TOSGEM TOSGEM; DLG_RS232 RS232; DLG_PRINTER Printer; - DLG_CPU Cpu; + DLG_SYSTEM System; } DLG_PARAMS;