瀏覽代碼

CVideoHandler.cpp: Clear screen before rendering each frame of the intro

This way, the background is black instead of showing glitchy artifacts when one resizes the window
Alexander Wilms 1 年之前
父節點
當前提交
eee1a4d061
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      client/CVideoHandler.cpp

+ 1 - 0
client/CVideoHandler.cpp

@@ -631,6 +631,7 @@ bool CVideoPlayer::playVideo(int x, int y, bool stopOnKey)
 
 		SDL_Rect rect = CSDL_Ext::toSDL(pos);
 
+		SDL_RenderClear(mainRenderer);
 		SDL_RenderCopy(mainRenderer, texture, nullptr, &rect);
 		SDL_RenderPresent(mainRenderer);