Skip to content

Commit

Permalink
Fix MSYS2/Mingw compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
vsonnier committed Jul 18, 2024
1 parent bffe101 commit bac0b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/snd_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ static void S_SoundList (void)
Con_SafePrintf (" "); // johnfitz -- was Con_Printf
Con_SafePrintf ("(%2db) %9i : %s\n", sc->width * 8, size, sfx->name); // johnfitz -- was Con_Printf
}
Con_Printf ("%i sounds, %zu bytes\n", num_sfx, total); // johnfitz -- added count
Con_Printf ("%i sounds, %lu bytes\n", num_sfx, (unsigned long)total); // johnfitz -- added count
}

void S_LocalSound (const char *name)
Expand Down

0 comments on commit bac0b22

Please sign in to comment.