@@ -187,7 +187,7 @@ private void CreateArguments(PUAESyncSettings settings)
187
187
"chipset_compatible=" + _chipsetCompatible ,
188
188
"chipmem_size=" + ( int ) ChipMemory . MB_2 ,
189
189
"bogomem_size=" + ( int ) SlowMemory . KB_0 ,
190
- "fastmem_size=8 " ,
190
+ "fastmem_size=0 " ,
191
191
} ) ;
192
192
EnableCycleExact ( ) ;
193
193
break ;
@@ -329,36 +329,36 @@ public class PUAESyncSettings
329
329
public MachineConfig MachineConfig { get ; set ; }
330
330
331
331
[ DisplayName ( "CPU model" ) ]
332
- [ Description ( "" ) ]
332
+ [ Description ( "Overrides machine configuration. " ) ]
333
333
[ DefaultValue ( CpuModel . Auto ) ]
334
334
[ TypeConverter ( typeof ( DescribableEnumConverter ) ) ]
335
335
public CpuModel CpuModel { get ; set ; }
336
336
337
337
[ DisplayName ( "Chipset compatible" ) ]
338
- [ Description ( "" ) ]
338
+ [ Description ( "Overrides machine configuration. " ) ]
339
339
[ DefaultValue ( ChipsetCompatible . Auto ) ]
340
340
public ChipsetCompatible ChipsetCompatible { get ; set ; }
341
341
342
342
[ DisplayName ( "Chipset" ) ]
343
- [ Description ( "" ) ]
343
+ [ Description ( "Overrides machine configuration. " ) ]
344
344
[ DefaultValue ( Chipset . Auto ) ]
345
345
[ TypeConverter ( typeof ( DescribableEnumConverter ) ) ]
346
346
public Chipset Chipset { get ; set ; }
347
347
348
348
[ DisplayName ( "Chip memory" ) ]
349
- [ Description ( "Size of chip-memory" ) ]
349
+ [ Description ( "Size of chip-memory. Overrides machine configuration. " ) ]
350
350
[ DefaultValue ( ChipMemory . Auto ) ]
351
351
[ TypeConverter ( typeof ( DescribableEnumConverter ) ) ]
352
352
public ChipMemory ChipMemory { get ; set ; }
353
353
354
354
[ DisplayName ( "Slow memory" ) ]
355
- [ Description ( "Size of bogo-memory at 0xC00000" ) ]
355
+ [ Description ( "Size of bogo-memory at 0xC00000. Overrides machine configuration. " ) ]
356
356
[ DefaultValue ( SlowMemory . Auto ) ]
357
357
[ TypeConverter ( typeof ( DescribableEnumConverter ) ) ]
358
358
public SlowMemory SlowMemory { get ; set ; }
359
359
360
360
[ 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. " ) ]
362
362
[ Range ( LibPUAE . FASTMEM_AUTO , 512 ) ]
363
363
[ DefaultValue ( LibPUAE . FASTMEM_AUTO ) ]
364
364
[ TypeConverter ( typeof ( ConstrainedIntConverter ) ) ]
0 commit comments