summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/amiga/arsystems.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/amiga/arsystems.cpp')
-rw-r--r--src/mame/amiga/arsystems.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/amiga/arsystems.cpp b/src/mame/amiga/arsystems.cpp
index 60216e0972d..53cf48f1100 100644
--- a/src/mame/amiga/arsystems.cpp
+++ b/src/mame/amiga/arsystems.cpp
@@ -936,12 +936,12 @@ void arcadia_amiga_state::generic_decode(const char *tag, int bit7, int bit6, in
for (i = 0; i < 0x20000/2; i++)
rom[i] = bitswap<16>(rom[i], 15,14,13,12,11,10,9,8, bit7,bit6,bit5,bit4,bit3,bit2,bit1,bit0);
- #if 0
+ if (0)
{
uint8_t *ROM = memregion(tag)->base();
// int size = memregion(tag)->bytes();
- auto filename = std::string{ "decrypted_" } + machine().system().name;
+ auto filename = "decrypted_" + std::string(machine().system().name);
auto fp = fopen(filename.c_str(), "w+b");
if (fp)
{
@@ -951,7 +951,6 @@ void arcadia_amiga_state::generic_decode(const char *tag, int bit7, int bit6, in
fclose(fp);
}
}
- #endif
}