remove some unnecessary qualifiers

main
cosmonaut 2022-06-05 12:29:35 -07:00
parent ff544140e0
commit 436affe5de
1 changed files with 2 additions and 2 deletions

View File

@ -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 // Based on the SDL2# LPUtf8StrMarshaler
unsafe 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. // Need to do it this way because SDL2 expects you to free the filename string.
string filePath = SDL.UTF8_ToManaged(evt.drop.file, true); string filePath = SDL.UTF8_ToManaged(evt.drop.file, true);