summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/romload.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-01-02 17:26:37 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-01-02 17:26:37 +0000
commitb7c652b8ddaa4b43e9f54617b6d6d01391781108 (patch)
tree507fae6bba6c3a590d56a4812d37f3add81bf600 /src/emu/romload.h
parent74d7495dbce843779c6a7d0049f049480e29859a (diff)
Removed a couple of unnecessary typedefs from mamecore.h.
Updated romload to use an astring for accumulating errors (I always feared busting that buffer with some huge romlist).
Diffstat (limited to 'src/emu/romload.h')
-rw-r--r--src/emu/romload.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/emu/romload.h b/src/emu/romload.h
index de139ed81d4..fb310cd2962 100644
--- a/src/emu/romload.h
+++ b/src/emu/romload.h
@@ -141,25 +141,6 @@ struct _rom_entry
};
-/* In mamecore.h: typedef struct _rom_load_data rom_load_data; */
-struct _rom_load_data
-{
- int warnings; /* warning count during processing */
- int errors; /* error count during processing */
-
- int romsloaded; /* current ROMs loaded count */
- int romstotal; /* total number of ROMs to read */
-
- mame_file * file; /* current file */
-
- UINT8 * regionbase; /* base of current region */
- UINT32 regionlength; /* length of current region */
-
- char errorbuf[4096]; /* accumulated errors */
- UINT8 tempbuf[65536]; /* temporary buffer */
-};
-
-
/***************************************************************************
MACROS