diff --git a/src/Spice86.Core/Emulator/ProgramBootstrapper.cs b/src/Spice86.Core/Emulator/ProgramBootstrapper.cs index b75fdfd8cd..2a38ee5171 100644 --- a/src/Spice86.Core/Emulator/ProgramBootstrapper.cs +++ b/src/Spice86.Core/Emulator/ProgramBootstrapper.cs @@ -55,7 +55,7 @@ public void LoadInitialProgram() { executableFileName, isDosProgram); } - ExecutableFileLoader loader = CreateLoader(executableFileName, isDosProgram, upperCaseExtension); + ExecutableFileLoader loader = CreateLoader(isDosProgram, upperCaseExtension); try { if (_configuration.InitializeDOS is null) { @@ -72,7 +72,7 @@ public void LoadInitialProgram() { } } - private ExecutableFileLoader CreateLoader(string executableFileName, bool isDosProgram, string upperCaseExtension) { + private ExecutableFileLoader CreateLoader(bool isDosProgram, string upperCaseExtension) { if (!isDosProgram) { return new BiosLoader(_memory, _state, _loggerService); } diff --git a/src/Spice86/Views/MainWindow.axaml b/src/Spice86/Views/MainWindow.axaml index 785648f2fa..182d529564 100644 --- a/src/Spice86/Views/MainWindow.axaml +++ b/src/Spice86/Views/MainWindow.axaml @@ -35,7 +35,7 @@ - + @@ -49,75 +49,77 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + + + + + + + + - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - @@ -204,16 +206,6 @@ - - - - - - - - @@ -226,10 +218,12 @@ + + - +