GUI: turn input repeat on by default
This commit is contained in:
parent
be883ed387
commit
8b38ab7804
|
@ -2237,7 +2237,7 @@ class FurnaceGUI {
|
||||||
vsync(1),
|
vsync(1),
|
||||||
frameRateLimit(60),
|
frameRateLimit(60),
|
||||||
displayRenderTime(0),
|
displayRenderTime(0),
|
||||||
inputRepeat(0),
|
inputRepeat(1),
|
||||||
glRedSize(8),
|
glRedSize(8),
|
||||||
glGreenSize(8),
|
glGreenSize(8),
|
||||||
glBlueSize(8),
|
glBlueSize(8),
|
||||||
|
|
|
@ -4901,7 +4901,7 @@ void FurnaceGUI::readConfig(DivConfig& conf, FurnaceGUISettingGroups groups) {
|
||||||
|
|
||||||
settings.selectAssetOnLoad=conf.getInt("selectAssetOnLoad",1);
|
settings.selectAssetOnLoad=conf.getInt("selectAssetOnLoad",1);
|
||||||
|
|
||||||
settings.inputRepeat=conf.getInt("inputRepeat",0);
|
settings.inputRepeat=conf.getInt("inputRepeat",1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (groups&GUI_SETTINGS_FONT) {
|
if (groups&GUI_SETTINGS_FONT) {
|
||||||
|
|
Loading…
Reference in a new issue