diff options
Diffstat (limited to 'Ryujinx.SDL2.Common/SDL2Driver.cs')
-rw-r--r-- | Ryujinx.SDL2.Common/SDL2Driver.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.SDL2.Common/SDL2Driver.cs b/Ryujinx.SDL2.Common/SDL2Driver.cs index 4a30523c..9d8dacf8 100644 --- a/Ryujinx.SDL2.Common/SDL2Driver.cs +++ b/Ryujinx.SDL2.Common/SDL2Driver.cs @@ -69,7 +69,7 @@ namespace Ryujinx.SDL2.Common if (SDL_Init(SdlInitFlags) != 0) { - string errorMessage = $"SDL2 initlaization failed with error \"{SDL_GetError()}\""; + string errorMessage = $"SDL2 initialization failed with error \"{SDL_GetError()}\""; Logger.Error?.Print(LogClass.Application, errorMessage); |