diff options
author | 2012-09-16 03:06:55 +0000 | |
---|---|---|
committer | 2012-09-16 03:06:55 +0000 | |
commit | 91f928d6cd774c9526c7fde7e0860aded24d08a5 (patch) | |
tree | 7f41fdb9da8c9de744c08094820eb47c6b21576b /src/mess/includes/macpci.h | |
parent | 8d1de4e030e6af94e1bb6c1cbeedb8ca8a18d5b1 (diff) |
Enum and union normalization.
Diffstat (limited to 'src/mess/includes/macpci.h')
-rw-r--r-- | src/mess/includes/macpci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/includes/macpci.h b/src/mess/includes/macpci.h index a2e37f9bdaa..17832aab5c3 100644 --- a/src/mess/includes/macpci.h +++ b/src/mess/includes/macpci.h @@ -24,7 +24,7 @@ #define MAC_539X_2_TAG "539x_2" /* tells which model is being emulated (set by macxxx_init) */ -typedef enum +enum model_t { PCIMODEL_MAC_PM5200, PCIMODEL_MAC_PM6200, @@ -66,7 +66,7 @@ typedef enum PCIMODEL_MAC_PIPPIN, // Apple/Bandai Pippin -} model_t; +}; /*----------- defined in machine/pcimac.c -----------*/ |