diff options
author | 2015-07-29 14:36:49 +0100 | |
---|---|---|
committer | 2015-07-29 14:36:49 +0100 | |
commit | f2f250d9f29c41afe63d11640f02944878147017 (patch) | |
tree | 88c8056b25488794e4e48897fcf4f9119bc4f294 /src/mess/drivers/codata.c | |
parent | 582f37814ad3274e059cc8da16c47b0185074a82 (diff) |
change flags from GAME_ to MACHINE_
this better fits the drivers from MESS (which have always illogically used the GAME_ flags despite not being games) and also fits fine with arcade machines.
Diffstat (limited to 'src/mess/drivers/codata.c')
-rw-r--r-- | src/mess/drivers/codata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/codata.c b/src/mess/drivers/codata.c index 8e5c8bebdc3..91c7459f450 100644 --- a/src/mess/drivers/codata.c +++ b/src/mess/drivers/codata.c @@ -110,4 +110,4 @@ ROM_END /* Driver */ /* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS */ -COMP( 1982, codata, 0, 0, codata, codata, driver_device, 0, "Contel Codata Corporation", "Codata", GAME_NOT_WORKING | GAME_NO_SOUND) +COMP( 1982, codata, 0, 0, codata, codata, driver_device, 0, "Contel Codata Corporation", "Codata", MACHINE_NOT_WORKING | MACHINE_NO_SOUND) |