mirror of
https://github.com/badvision/jace.git
synced 2024-11-28 10:52:33 +00:00
Changed joystick setting defaults to turn in on by default, which will probably save a lot of folks some confusion.
This commit is contained in:
parent
2114059914
commit
a38d7507c1
@ -87,7 +87,7 @@ public class Apple2e extends Computer {
|
||||
@ConfigurableField(name = "Aux Ram", shortName = "ram", description = "Aux ram card")
|
||||
public ClassSelection ramCard = new ClassSelection(RAM128k.class, CardExt80Col.class);
|
||||
@ConfigurableField(name = "Joystick 1 Enabled", shortName = "joy1", description = "If unchecked, then there is no joystick support.", enablesDevice = true)
|
||||
public boolean joy1enabled = false;
|
||||
public boolean joy1enabled = true;
|
||||
@ConfigurableField(name = "Joystick 2 Enabled", shortName = "joy2", description = "If unchecked, then there is no joystick support.", enablesDevice = true)
|
||||
public boolean joy2enabled = false;
|
||||
@ConfigurableField(name = "No-Slot Clock Enabled", shortName = "clock", description = "If checked, no-slot clock will be enabled", enablesDevice = true)
|
||||
|
@ -47,11 +47,11 @@ import java.util.logging.Logger;
|
||||
@Stateful
|
||||
public class Joystick extends Device {
|
||||
@ConfigurableField(name = "Center Mouse", shortName = "center", description = "Moves mouse back to the center of the screen, can get annoying.")
|
||||
public boolean centerMouse;
|
||||
public boolean centerMouse = false;
|
||||
@ConfigurableField(name = "Use keyboard", shortName = "useKeys", description = "Arrow keys will control joystick instead of the mouse.")
|
||||
public boolean useKeyboard;
|
||||
public boolean useKeyboard = true;
|
||||
@ConfigurableField(name = "Hog keypresses", shortName = "hog", description = "Key presses will not be sent to emulator.")
|
||||
public boolean hogKeyboard;
|
||||
public boolean hogKeyboard = false;
|
||||
public int port;
|
||||
@Stateful
|
||||
public int x = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user