build: fix GH jobs

This commit is contained in:
Marcin Kurczewski 2023-09-21 17:38:17 +02:00
parent a38bd83dbd
commit 0da996864c
No known key found for this signature in database
GPG key ID: CC65E6FD28CAE42A
6 changed files with 11 additions and 11 deletions

View file

@ -1490,7 +1490,7 @@ static void Inject_AddRoomFace(INJECTION *injection)
// Increment the relevant number of faces and work out the
// starting point in the mesh for the injection.
int inject_pos;
int inject_pos = 0;
int num_data = r->data[data_index]; // Quads
if (face_type == FT_TEXTURED_QUAD) {
r->data[data_index]++;

View file

@ -339,7 +339,7 @@ static void Overlay_DrawPickup3D(DISPLAY_PICKUP_INFO *pu)
int32_t src_x = padding_x + (pu->grid_x + 1.0f) * pickup_width;
int32_t src_y = 0;
float ease;
float ease = 1.0f;
switch (pu->phase) {
case DPP_EASE_IN:
ease = Overlay_Ease(pu->duration, MAX_PICKUP_DURATION_EASE_IN);