diff options
author | 2011-05-07 10:57:23 +0000 | |
---|---|---|
committer | 2011-05-07 10:57:23 +0000 | |
commit | f7d01e8bf53d9f6b2e60dbb95514f6c5a3a561f7 (patch) | |
tree | 5ab11efb5ae33307e02693c10b6b5969462a8b73 /src/lib/formats/atarist_dsk.c | |
parent | e2a75038805fc678186db4a21cd3c5577e47081b (diff) |
Fix issues with define of logerror (no whatsnew)
Diffstat (limited to 'src/lib/formats/atarist_dsk.c')
-rw-r--r-- | src/lib/formats/atarist_dsk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/atarist_dsk.c b/src/lib/formats/atarist_dsk.c index b97a1cb8edd..f4ea8497d1d 100644 --- a/src/lib/formats/atarist_dsk.c +++ b/src/lib/formats/atarist_dsk.c @@ -65,7 +65,7 @@ static FLOPPY_CONSTRUCT( atarist_st_construct ) geometry.tracks = tracks; geometry.sectors = sectors; - if (LOG) logerror("ST Heads %u Tracks %u Sectors %u\n", heads, tracks, sectors); + if (LOG) LOG_FORMATS("ST Heads %u Tracks %u Sectors %u\n", heads, tracks, sectors); return basicdsk_construct(floppy, &geometry); } |