multiple fixes, variable typo fixes, adherence to a certain style. Fixed initialization of the new function, defaults to 0
This commit is contained in:
@@ -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>>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user