From 28d47d463f95742e73daece1aea3c566871ece88 Mon Sep 17 00:00:00 2001 From: raa-eruanna Date: Sat, 18 Nov 2017 08:11:27 -0500 Subject: [PATCH] - fix linux compile # Conflicts: # src/posix/sdl/sdlvideo.cpp --- src/posix/sdl/sdlvideo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/posix/sdl/sdlvideo.cpp b/src/posix/sdl/sdlvideo.cpp index 6a0420ae815..8cae6873979 100644 --- a/src/posix/sdl/sdlvideo.cpp +++ b/src/posix/sdl/sdlvideo.cpp @@ -555,6 +555,7 @@ ADD_STAT (blit) // each platform has its own specific version of this function. void I_SetWindowTitle(const char* caption) { + auto Screen = static_cast(screen)->GetSDLWindow(); if (caption) SDL_SetWindowTitle(static_cast(screen)->GetSDLWindow(), caption); else