Skip to content

Commit

Permalink
audio: Fixed a '//' style comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 21, 2020
1 parent dbe5c14 commit f30ef6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/audio/SDL_audio.c
Expand Up @@ -1668,9 +1668,9 @@ Uint8
SDL_SilenceValueForFormat(const SDL_AudioFormat format)
{
switch (format) {
// !!! FIXME: 0x80 isn't perfect for U16, but we can't fit 0x8000 in a
// !!! FIXME: byte for memset() use. This is actually 0.1953 percent off
// from silence. Maybe just don't use U16.
/* !!! FIXME: 0x80 isn't perfect for U16, but we can't fit 0x8000 in a
!!! FIXME: byte for memset() use. This is actually 0.1953 percent
!!! FIXME: off from silence. Maybe just don't use U16. */
case AUDIO_U16LSB:
case AUDIO_U16MSB:
case AUDIO_U8:
Expand Down

0 comments on commit f30ef6e

Please sign in to comment.