fix: changed default values for infoslot and joystick config
- Info text for infoslot, some shortcuts was old. - default joystick config includes some useful keys for alternative controllers.
This commit is contained in:
parent
64c919cabc
commit
20c0d0bddd
|
@ -11,7 +11,7 @@ import java.util.Objects;
|
||||||
|
|
||||||
public class JoystickModel extends AbstractModel
|
public class JoystickModel extends AbstractModel
|
||||||
{
|
{
|
||||||
public static final String DEFAULT_CONFIG = "JU,JD,JL,JR,JF,JF,SP,EN,,F1,F3,F5,,,";
|
public static final String DEFAULT_CONFIG = "JU,JD,JL,JR,JF,JF,SP,EN,CU,Y,N,RS,CD,F1,F7";
|
||||||
private final boolean port1;
|
private final boolean port1;
|
||||||
private boolean primary = false;
|
private boolean primary = false;
|
||||||
private boolean mouse = false;
|
private boolean mouse = false;
|
||||||
|
|
|
@ -45,12 +45,12 @@ public class PreferencesModel extends AbstractModel implements CommonInfoModel
|
||||||
private boolean cropScreenshots = false;
|
private boolean cropScreenshots = false;
|
||||||
|
|
||||||
private String description =
|
private String description =
|
||||||
"For more Info on PCUAE look in The Help Menu. Main keys are CTRL + F1 for The Help Menu, CTRL + F3 for Carousel Version Changer, CTRL + F5 for Mode Changer, CTRL + F7 for PCUAE Option Menu, CTRL + SHIFT + F7 for Carousel Gamelist Changer.";
|
"For more Info on PCUAE go to https://github.com/CommodoreOS/PCUAE. Main keys: CTRL + F1 for Carousel Gamelist Changer, CTRL + F3 for Carousel Version Changer, CTRL + F5 for Mode Changer (Amiga, Atari, linux etc), CTRL + F7 for PCUAE Options Menu.";
|
||||||
private String descriptionDe = "";
|
private String descriptionDe = "";
|
||||||
private String descriptionFr = "";
|
private String descriptionFr = "";
|
||||||
private String descriptionEs = "";
|
private String descriptionEs = "";
|
||||||
private String descriptionIt = "";
|
private String descriptionIt = "";
|
||||||
private int year = 2022;
|
private int year = 2023;
|
||||||
private String genre = "adventure";
|
private String genre = "adventure";
|
||||||
private String author = "";
|
private String author = "";
|
||||||
private String composer = "C64 SID Background Music";
|
private String composer = "C64 SID Background Music";
|
||||||
|
|
Loading…
Reference in New Issue