From 31e9ab663da806886a31cefc696760c9e4d49fdb Mon Sep 17 00:00:00 2001 From: Joseph Cloutier Date: Thu, 19 May 2022 18:23:20 -0400 Subject: [PATCH] Remove unused case. The `HX_WINDOWS` case is handled a bit further down. --- project/src/backend/sdl/SDLSystem.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/project/src/backend/sdl/SDLSystem.cpp b/project/src/backend/sdl/SDLSystem.cpp index 3e3f53f37..058f2d3dd 100644 --- a/project/src/backend/sdl/SDLSystem.cpp +++ b/project/src/backend/sdl/SDLSystem.cpp @@ -597,20 +597,6 @@ namespace lime { #endif } - case SDL_RWOPS_WINFILE: - { - /*#ifdef HX_WINDOWS - printf("SDKFLJDSLFKJ\n"); - int fd = _open_osfhandle ((uintptr_t)((SDL_RWops*)handle)->hidden.windowsio.h, _O_RDONLY); - - if (fd != -1) { - printf("SDKFLJDSLFKJ\n"); - return ::fdopen (fd, "rb"); - - } - #endif*/ - } - } return NULL;