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
1 changed files with 6 additions and 6 deletions

View File

@ -43,12 +43,12 @@ import javafx.beans.value.ChangeListener;
*/
public abstract class Computer implements Reconfigurable {
private RAM memory;
private CPU cpu;
private Video video;
private Keyboard keyboard;
private StateManager stateManager;
private Motherboard motherboard;
public RAM memory;
public CPU cpu;
public Video video;
public Keyboard keyboard;
public StateManager stateManager;
public Motherboard motherboard;
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.")
public boolean enableStateManager;