multiple fixes, variable typo fixes, adherence to a certain style. Fixed initialization of the new function, defaults to 0

This commit is contained in:
Vova
2025-01-08 22:45:33 +10:00
parent 37b4dd2133
commit b6667a8352
22 changed files with 59 additions and 57 deletions

View File

@@ -423,7 +423,7 @@ namespace Ryujinx.Ava.Utilities.Configuration
/// <summary>
/// Allows you to choose from three options: do nothing, exit the application, exit the emulator
/// </summary>
public ReactiveObject<int> SpetialExitEmulator { get; private set; }
public ReactiveObject<int> specialExitEmulator { get; private set; }
/// <summary>
/// Hotkey Keyboard Bindings
@@ -441,7 +441,7 @@ namespace Ryujinx.Ava.Utilities.Configuration
{
EnableKeyboard = new ReactiveObject<bool>();
EnableMouse = new ReactiveObject<bool>();
SpetialExitEmulator = new ReactiveObject<int>();
specialExitEmulator = new ReactiveObject<int>();
Hotkeys = new ReactiveObject<KeyboardHotkeys>();
InputConfig = new ReactiveObject<List<InputConfig>>();
}