diff options
author | 2009-06-08 05:43:50 +0000 | |
---|---|---|
committer | 2009-06-08 05:43:50 +0000 | |
commit | ce83de86a8c88053081d9f5cb8c6b83baf606fb9 (patch) | |
tree | 7729630ed967f79cecd7da3229a2c0e4675d6e60 /src/emu/machine/6840ptm.c | |
parent | e7f6662790f67c60b26e93272d3d9c534fad4799 (diff) |
The other larger patch adds missing static and const qualifiers, and
fixes up some header files. In particular, I adjusted const char
*DEVTEMPLATE_SOURCE = __FILE__ to const char DEVTEMPLATE_SOURCE[] =
__FILE__ which makes it actually const and saves a little memory.
[Atari Ace]
Diffstat (limited to 'src/emu/machine/6840ptm.c')
-rw-r--r-- | src/emu/machine/6840ptm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/6840ptm.c b/src/emu/machine/6840ptm.c index e86d9368ed8..e2ff13e1bc5 100644 --- a/src/emu/machine/6840ptm.c +++ b/src/emu/machine/6840ptm.c @@ -839,7 +839,7 @@ static DEVICE_RESET( ptm6840 ) device definition -------------------------------------------------*/ -static const char *DEVTEMPLATE_SOURCE = __FILE__; +static const char DEVTEMPLATE_SOURCE[] = __FILE__; #define DEVTEMPLATE_ID(p,s) p##ptm6840##s #define DEVTEMPLATE_FEATURES DT_HAS_START | DT_HAS_RESET |