We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be468a commit 3aa4267Copy full SHA for 3aa4267
src/libretro/core.cpp
@@ -121,7 +121,8 @@ char retro_system_bios_directory[512];
121
char retro_system_save_directory[512];
122
char retro_content_filepath[512];
123
124
-uint16_t audioBuffer[B2_SAMPLE_RATE*1000*2];
+// TODO: optimize size instead of a full second + add guards when filling
125
+uint16_t audioBuffer[B2_SAMPLE_RATE*2];
126
bool inputStateMap[256][1];
127
128
retro_usec_t curr_frame_time = 0;
0 commit comments