From bfe47597452f8dd237f50a8246e9f22cf04105f1 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Fri, 1 Nov 2019 12:59:46 +0100 Subject: [PATCH] Loading screen (#1836) --- Source/interfac.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/interfac.cpp b/Source/interfac.cpp index 8e3f3a93d..0e540ab30 100644 --- a/Source/interfac.cpp +++ b/Source/interfac.cpp @@ -36,11 +36,11 @@ void DrawCutscene() DWORD i; lock_buf(1); - CelDraw(SCREEN_X, 480 + SCREEN_Y - 1, (BYTE *)sgpBackCel, 1, 640); + CelDraw(PANEL_X, 480 + SCREEN_Y - 1, (BYTE *)sgpBackCel, 1, 640); for (i = 0; i < sgdwProgress; i++) { DrawProgress( - BarPos[progress_id][0] + i + SCREEN_X, + BarPos[progress_id][0] + i + PANEL_X, BarPos[progress_id][1] + SCREEN_Y, progress_id); }