diff options
author | 2008-08-13 02:48:52 +0000 | |
---|---|---|
committer | 2008-08-13 02:48:52 +0000 | |
commit | 1daf41e21826daaa7e136f095672035817afcea5 (patch) | |
tree | f6f543718bf84378508a6d80c042e47d5f16beb0 /src/emu/cpu/drccache.h | |
parent | 0f0b9208f62f0b631f6d5e91d12d244da9bb5c5e (diff) |
Final CPU header updates. Mostly just re-naming the re-inclusions.
The structures/names were getting too complex for my macros to handle. They would require hand editing and my computer is too slow to keep re-compiling.
Passes a clean compile.
Diffstat (limited to 'src/emu/cpu/drccache.h')
-rw-r--r-- | src/emu/cpu/drccache.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/cpu/drccache.h b/src/emu/cpu/drccache.h index 8fa7c82da1e..130436b1411 100644 --- a/src/emu/cpu/drccache.h +++ b/src/emu/cpu/drccache.h @@ -10,6 +10,8 @@ ***************************************************************************/ +#pragma once + #ifndef __DRCCACHE_H__ #define __DRCCACHE_H__ @@ -104,4 +106,4 @@ drccodeptr drccache_end_codegen(drccache *cache); void drccache_request_oob_codegen(drccache *cache, drccache_oob_func callback, void *param1, void *param2, void *param3); -#endif +#endif /* __DRCCACHE_H__ */ |