Make fields public to un-break configuration again

This commit is contained in:
Brendan Robert 2024-02-15 13:10:08 -06:00
parent 856a660fde
commit c049a43d68

View File

@ -43,12 +43,12 @@ import javafx.beans.value.ChangeListener;
*/ */
public abstract class Computer implements Reconfigurable { public abstract class Computer implements Reconfigurable {
private RAM memory; public RAM memory;
private CPU cpu; public CPU cpu;
private Video video; public Video video;
private Keyboard keyboard; public Keyboard keyboard;
private StateManager stateManager; public StateManager stateManager;
private Motherboard motherboard; public Motherboard motherboard;
public final CompletableFuture<Boolean> romLoaded; public final CompletableFuture<Boolean> romLoaded;
@ConfigurableField(category = "advanced", name = "State management", shortName = "rewind", description = "This enables rewind support, but consumes a lot of memory when active.") @ConfigurableField(category = "advanced", name = "State management", shortName = "rewind", description = "This enables rewind support, but consumes a lot of memory when active.")
public boolean enableStateManager; public boolean enableStateManager;