pad struct to 4 bytes so ARM and 68K size are the same

This commit is contained in:
ehouse 2004-09-29 13:17:15 +00:00
parent ba71b65016
commit 4494339d72
2 changed files with 9 additions and 3 deletions

View file

@ -72,8 +72,10 @@ typedef enum {
* already have the notion of per-game and all-game prefs. * already have the notion of per-game and all-game prefs.
*/ */
typedef struct CommonPrefs { typedef struct CommonPrefs {
XP_Bool showBoardArrow; /* applies to all games */ XP_Bool showBoardArrow; /* applies to all games */
XP_Bool showRobotScores; /* applies to all games */ XP_Bool showRobotScores; /* applies to all games */
XP_Bool reserved1; /* get to 32-bit for ARM... */
XP_Bool reserved2;
} CommonPrefs; } CommonPrefs;
/* used for all vtables */ /* used for all vtables */

View file

@ -117,10 +117,14 @@ typedef struct XWords4PreferenceType {
Boolean showProgress; Boolean showProgress;
Boolean showGrid; Boolean showGrid;
Boolean showColors; Boolean showColors;
#ifndef DEBUG_OFF #ifdef DEBUG
Boolean showDebugstrs; Boolean showDebugstrs;
Boolean windowAvail; Boolean windowAvail;
Boolean logToMemo; Boolean logToMemo;
Boolean reserved1;
Boolean reserved2;
#else
Boolean reserved1;
#endif #endif
/* New for 0x0405 */ /* New for 0x0405 */
CommonPrefs cp; CommonPrefs cp;