Browse Source

Loading screen (#1836)

pull/417/head
Mathieu Maret 7 years ago committed by Anders Jenbo
parent
commit
bfe4759745
  1. 4
      Source/interfac.cpp

4
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);
}

Loading…
Cancel
Save