Skip to content

Commit 5bdb3b2

Browse files
committed
puae: disable fastmem for a1200
there are games that require this machine and 0 fastmem. games that require non-zero fastmem on this machine are currently not supported (HDs, CDs, and WHDs).
1 parent 89d76ef commit 5bdb3b2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ private void CreateArguments(PUAESyncSettings settings)
187187
"chipset_compatible=" + _chipsetCompatible,
188188
"chipmem_size=" + (int)ChipMemory.MB_2,
189189
"bogomem_size=" + (int)SlowMemory.KB_0,
190-
"fastmem_size=8",
190+
"fastmem_size=0",
191191
});
192192
EnableCycleExact();
193193
break;
@@ -329,36 +329,36 @@ public class PUAESyncSettings
329329
public MachineConfig MachineConfig { get; set; }
330330

331331
[DisplayName("CPU model")]
332-
[Description("")]
332+
[Description("Overrides machine configuration.")]
333333
[DefaultValue(CpuModel.Auto)]
334334
[TypeConverter(typeof(DescribableEnumConverter))]
335335
public CpuModel CpuModel { get; set; }
336336

337337
[DisplayName("Chipset compatible")]
338-
[Description("")]
338+
[Description("Overrides machine configuration.")]
339339
[DefaultValue(ChipsetCompatible.Auto)]
340340
public ChipsetCompatible ChipsetCompatible { get; set; }
341341

342342
[DisplayName("Chipset")]
343-
[Description("")]
343+
[Description("Overrides machine configuration.")]
344344
[DefaultValue(Chipset.Auto)]
345345
[TypeConverter(typeof(DescribableEnumConverter))]
346346
public Chipset Chipset { get; set; }
347347

348348
[DisplayName("Chip memory")]
349-
[Description("Size of chip-memory")]
349+
[Description("Size of chip-memory. Overrides machine configuration.")]
350350
[DefaultValue(ChipMemory.Auto)]
351351
[TypeConverter(typeof(DescribableEnumConverter))]
352352
public ChipMemory ChipMemory { get; set; }
353353

354354
[DisplayName("Slow memory")]
355-
[Description("Size of bogo-memory at 0xC00000")]
355+
[Description("Size of bogo-memory at 0xC00000. Overrides machine configuration.")]
356356
[DefaultValue(SlowMemory.Auto)]
357357
[TypeConverter(typeof(DescribableEnumConverter))]
358358
public SlowMemory SlowMemory { get; set; }
359359

360360
[DisplayName("Fast memory")]
361-
[Description("Size in megabytes of fast-memory. -1 means Auto.")]
361+
[Description("Size in megabytes of fast-memory. -1 means Auto. Overrides machine configuration.")]
362362
[Range(LibPUAE.FASTMEM_AUTO, 512)]
363363
[DefaultValue(LibPUAE.FASTMEM_AUTO)]
364364
[TypeConverter(typeof(ConstrainedIntConverter))]

0 commit comments

Comments
 (0)