mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Pushed development on top of master to get rid of annoying Git issues. This'll give us a fresh start
This commit is contained in:
commit
c52be47e9f
@ -75,6 +75,8 @@ namespace Artemis.Managers
|
||||
if (!keyboardProvider.CanEnable())
|
||||
{
|
||||
_mainManager.DialogService.ShowErrorMessageBox(keyboardProvider.CantEnableText);
|
||||
General.Default.LastKeyboard = null;
|
||||
General.Default.Save();
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@ -125,9 +125,9 @@ namespace Artemis.ViewModels.Flyouts
|
||||
|
||||
protected override void HandleOpen()
|
||||
{
|
||||
SelectedKeyboardProvider = General.Default.LastKeyboard.Length > 0
|
||||
? General.Default.LastKeyboard
|
||||
: "None";
|
||||
SelectedKeyboardProvider = string.IsNullOrEmpty(General.Default.LastKeyboard)
|
||||
? "None"
|
||||
: General.Default.LastKeyboard;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2,18 +2,18 @@
|
||||
[
|
||||
{
|
||||
"Game":"RocketLeague",
|
||||
"GameVersion":"1.16",
|
||||
"GameVersion":"1.17",
|
||||
"GameAddresses":[
|
||||
{
|
||||
"Description":"Boost",
|
||||
"BasePointer":{
|
||||
"value":22411984
|
||||
"value":22531104
|
||||
},
|
||||
"Offsets":[
|
||||
1632,
|
||||
1648,
|
||||
64,
|
||||
1636,
|
||||
1800,
|
||||
484,
|
||||
1828,
|
||||
540
|
||||
]
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user