]> git.lizzy.rs Git - nothing.git/commitdiff
Add TODO(#1072)
authorrexim <reximkut@gmail.com>
Thu, 19 Sep 2019 04:41:15 +0000 (11:41 +0700)
committerrexim <reximkut@gmail.com>
Thu, 19 Sep 2019 04:41:15 +0000 (11:41 +0700)
src/game/sound_samples.c

index baec662989ec16100de63a4c22af4b99d6896d55..1db8f5ccc526ee6341338db1f527b01867d7eeb5 100644 (file)
@@ -87,7 +87,7 @@ int init_buffer_and_device(Sound_samples *sound_samples,
     }
     
     /* Allocating active audio buffer location*/
-    //TODO: Allocate one huge active audio buffer with length of the maximum of all audio buffer, instead of one active buffer for each audio
+    //TODO(#1072): Allocate one huge active audio buffer with length of the maximum of all audio buffer, instead of one active buffer for each audio
     sound_samples->active_audio_buf_array = PUSH_LT(sound_samples->lt, nth_calloc(sound_samples->samples_count, sizeof(uint8_t*)), free);
     if (sound_samples->active_audio_buf_array == NULL) {
       log_fail("Failed to allocate memory for active audio buffer pointer array\n");