Browse Source

netbsd: Fixed comment.

Philipp Wiesemann 8 năm trước cách đây
mục cha
commit
4c190ce584
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/audio/netbsd/SDL_netbsdaudio.c

+ 1 - 1
src/audio/netbsd/SDL_netbsdaudio.c

@@ -220,7 +220,7 @@ NETBSDAUDIO_CaptureFromDevice(_THIS, void *_buffer, int buflen)
     Uint8 *buffer = (Uint8 *) _buffer;
     int br, p = 0;
 
-    /* Write the audio data, checking for EAGAIN on broken audio drivers */
+    /* Capture the audio data, checking for EAGAIN on broken audio drivers */
     do {
         br = read(this->hidden->audio_fd, buffer + p, buflen - p);
         if (br > 0)