Browse Source

- Hotfix: overlay was a pointer

Ivan Savenko 11 years ago
parent
commit
c424677736
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/CVideoHandler.h

+ 1 - 1
client/CVideoHandler.h

@@ -243,7 +243,7 @@ class CVideoPlayer : public IMainVideoPlayer
 
 	// Destination. Either overlay or dest.
 #ifdef VCMI_SDL1
-	SDL_Overlay overlay;
+	SDL_Overlay * overlay;
 #else
 	SDL_Texture *texture;
 #endif