diff options
| author | 2008-03-23 05:26:19 +0000 | |
|---|---|---|
| committer | 2008-03-23 05:26:19 +0000 | |
| commit | ffaddce8f4fa00af633a36787b0a899e0e4beb37 (patch) | |
| tree | 467f39739a69df16771e3fc69520b13e6579c436 | |
| parent | cd508ea42ddd41b6ff7c81678b0aeab30d76117b (diff) | |
Adds the 'static' as per AtariAce, but he screwed up the alignment of an important table :(, which is why I am sending it myself
| -rw-r--r-- | src/emu/video/mc6845.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/mc6845.c b/src/emu/video/mc6845.c index e2b3a1a5913..2c5f8a3814e 100644 --- a/src/emu/video/mc6845.c +++ b/src/emu/video/mc6845.c @@ -45,7 +45,7 @@ enum /* tags for state saving */ -const char * const device_tags[NUM_TYPES] = { "mc6845", "mc6845-1", "c6545-1", "r6545-1", "h46505", "hd6845", "sy6545-1" }; +static const char * const device_tags[NUM_TYPES] = { "mc6845", "mc6845-1", "c6545-1", "r6545-1", "h46505", "hd6845", "sy6545-1" }; /* capabilities */ static const int supports_disp_start_addr_r[NUM_TYPES] = { TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE }; |
