Skip to content

Commit

Permalink
PF_sound_I: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
s1lentq committed Jun 19, 2021
1 parent 0fed5b8 commit 478f338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rehlds/engine/pr_cmds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ void EXT_FUNC PF_sound_I(edict_t *entity, int channel, const char *sample, float
#else
if (volume < 0.0 || volume > 255.0)
#endif
Sys_Error("%s: volume = %i", __func__, volume);
Sys_Error("%s: volume = %f", __func__, volume);
if (attenuation < 0.0 || attenuation > 4.0)
Sys_Error("%s: attenuation = %f", __func__, attenuation);
if (channel < 0 || channel > 7)
Expand Down

0 comments on commit 478f338

Please sign in to comment.