diff options
author | 2013-08-30 11:23:06 +0000 | |
---|---|---|
committer | 2013-08-30 11:23:06 +0000 | |
commit | e15fbe30c797fd28c46069c0b80cba2f52695e87 (patch) | |
tree | 62e8ee7837897b4c3c4a18b02aaff77f06df039a /src/mess/machine/atarifdc.c | |
parent | ed33e5adf97b2fcb5cd1e5fd3b252b9941209670 (diff) |
this should fix compile on some compilers (nw)
Diffstat (limited to 'src/mess/machine/atarifdc.c')
-rw-r--r-- | src/mess/machine/atarifdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/atarifdc.c b/src/mess/machine/atarifdc.c index 860a743ee52..e8869a71549 100644 --- a/src/mess/machine/atarifdc.c +++ b/src/mess/machine/atarifdc.c @@ -185,7 +185,7 @@ static void atari_load_proc(device_image_interface &image) ext = image.filetype(); // hack alert, this means we can only load ATR via the softlist at the moment, image.filetype reutrns NULL :/ - if (!image.software_entry() == NULL) ext="ATR"; + if (image.software_entry() != NULL) ext="ATR"; /* no extension: assume XFD format (no header) */ if (!ext) |