From 436affe5de92f7ab346d03c7b6d46b9b621309a6 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Sun, 5 Jun 2022 12:29:35 -0700 Subject: [PATCH] remove some unnecessary qualifiers --- src/Game.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Game.cs b/src/Game.cs index 643658c6..e2f7bb7c 100644 --- a/src/Game.cs +++ b/src/Game.cs @@ -206,7 +206,7 @@ namespace MoonWorks } } - private void HandleTextInput(SDL2.SDL.SDL_Event evt) + private void HandleTextInput(SDL.SDL_Event evt) { // Based on the SDL2# LPUtf8StrMarshaler unsafe @@ -234,7 +234,7 @@ namespace MoonWorks } } - private unsafe void HandleFileDrop(SDL2.SDL.SDL_Event evt) + private void HandleFileDrop(SDL.SDL_Event evt) { // Need to do it this way because SDL2 expects you to free the filename string. string filePath = SDL.UTF8_ToManaged(evt.drop.file, true);