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/devtempl.h | |
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/devtempl.h')
-rw-r--r-- | src/emu/devtempl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/devtempl.h b/src/emu/devtempl.h index 054d9fc68fc..04978aa1b0c 100644 --- a/src/emu/devtempl.h +++ b/src/emu/devtempl.h @@ -11,7 +11,7 @@ Typical usage is as follows: -static const char *DEVTEMPLATE_SOURCE = __FILE__; +static const char DEVTEMPLATE_SOURCE[] = __FILE__; // for a primary device.... #define DEVTEMPLATE_ID(p,s) p##devicenameprefix##s |