diff options
author | 2018-09-20 11:42:37 +1000 | |
---|---|---|
committer | 2018-09-20 11:42:37 +1000 | |
commit | 2993e850bbe44f8e7992877bd1e5a767f762b1ac (patch) | |
tree | 46c40ac34c66782ce6441ddab959c2461230c4bb /src/lib/formats/cbm_crt.cpp | |
parent | 82a3d44cbe6d013a8e878cafc01e4b5caea03b38 (diff) |
(nw) fix lots of inadverently mutable static pointers
Diffstat (limited to 'src/lib/formats/cbm_crt.cpp')
-rw-r--r-- | src/lib/formats/cbm_crt.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/formats/cbm_crt.cpp b/src/lib/formats/cbm_crt.cpp index 0da119c006f..05bd56d5c38 100644 --- a/src/lib/formats/cbm_crt.cpp +++ b/src/lib/formats/cbm_crt.cpp @@ -40,9 +40,10 @@ *********************************************************************/ #include "emu.h" // fatalerror -#include "corefile.h" #include "cbm_crt.h" +#include "corefile.h" + //************************************************************************** // MACROS/CONSTANTS @@ -52,7 +53,7 @@ // slot names for the C64 cartridge types -static const char * CRT_C64_SLOT_NAMES[_CRT_C64_COUNT] = +static char const *const CRT_C64_SLOT_NAMES[_CRT_C64_COUNT] = { "standard", // 0 - Normal cartridge UNSUPPORTED, // 1 - Action Replay |