diff options
author | 2014-03-28 15:32:15 +0000 | |
---|---|---|
committer | 2014-03-28 15:32:15 +0000 | |
commit | f963d0bcd73fba69112e529071ef7507d29c7584 (patch) | |
tree | 9cfb517f49d7e7bef2299e3003b9d1e85794b914 /src/mess/machine/atarifdc.h | |
parent | 513738066d94b89185222f997fd0c715acc72d5f (diff) |
replaced some more malloc/free usage with global_alloc_array/global_free_array (nw)
Diffstat (limited to 'src/mess/machine/atarifdc.h')
-rw-r--r-- | src/mess/machine/atarifdc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/atarifdc.h b/src/mess/machine/atarifdc.h index 334c4bd8dbc..6eb132dabbc 100644 --- a/src/mess/machine/atarifdc.h +++ b/src/mess/machine/atarifdc.h @@ -32,7 +32,7 @@ private: struct atari_drive { - UINT8 *image; /* malloc'd image */ + UINT8 *image; /* alloc'd image */ int type; /* type of image (XFD, ATR, DSK) */ int mode; /* 0 read only, != 0 read/write */ int density; /* 0 SD, 1 MD, 2 DD */ |