diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs index 31e4aa3002..c94ef321b4 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs @@ -205,14 +205,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum embeddedRom = Util.DecompressGzipFile(new MemoryStream(Resources.ZX_plus2_rom.Value)); break; case "PLUS2AROM": - embeddedRom = Util.DecompressGzipFile(new MemoryStream(Resources.ZX_plus2a_rom.Value)); - break; case "PLUS3ROM": - byte[] r0 = Util.DecompressGzipFile(new MemoryStream(Resources.Spectrum3_V4_0_ROM0_bin.Value)); - byte[] r1 = Util.DecompressGzipFile(new MemoryStream(Resources.Spectrum3_V4_0_ROM1_bin.Value)); - byte[] r2 = Util.DecompressGzipFile(new MemoryStream(Resources.Spectrum3_V4_0_ROM2_bin.Value)); - byte[] r3 = Util.DecompressGzipFile(new MemoryStream(Resources.Spectrum3_V4_0_ROM3_bin.Value)); - embeddedRom = r0.Concat(r1).Concat(r2).Concat(r3).ToArray(); + embeddedRom = Util.DecompressGzipFile(new MemoryStream(Resources.ZX_plus2a_rom.Value)); break; default: embeddedFound = false; diff --git a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM0.bin.gz b/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM0.bin.gz deleted file mode 100644 index d70d805d62..0000000000 Binary files a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM0.bin.gz and /dev/null differ diff --git a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM1.bin.gz b/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM1.bin.gz deleted file mode 100644 index f813586462..0000000000 Binary files a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM1.bin.gz and /dev/null differ diff --git a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM2.bin.gz b/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM2.bin.gz deleted file mode 100644 index df586562a5..0000000000 Binary files a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM2.bin.gz and /dev/null differ diff --git a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM3.bin.gz b/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM3.bin.gz deleted file mode 100644 index 3062bc7fb1..0000000000 Binary files a/BizHawk.Emulation.Cores/Resources/Spectrum3_V4-0_ROM3.bin.gz and /dev/null differ