Skip to content

Commit

Permalink
fix audiobufferlenth to 882
Browse files Browse the repository at this point in the history
  • Loading branch information
ThKattanek committed Oct 2, 2018
1 parent bfb0e35 commit a8dc24d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// //
// #file: main.cpp //
// //
// last change: 09-28-2018 //
// last change: 10-02-2018 //
// https://github.com/ThKattanek/mod-player //
// //
//////////////////////////////////////////////////
Expand All @@ -26,9 +26,9 @@ using namespace std;
#define FONT_FILENAME "Topaz_a1200_v1.0.ttf"

#ifdef _WIN32
#define AUDIO_BUFFER_SIZE (735) // 735 bei 44.100 Khz (44100 / 60)
#define AUDIO_BUFFER_SIZE (882) // 735 bei 44.100 Khz (44100 / 50)
#else
#define AUDIO_BUFFER_SIZE (735) // 735 bei 44.100 Khz (44100 / 60)
#define AUDIO_BUFFER_SIZE (882) // 735 bei 44.100 Khz (44100 / 50)
#endif

void CutBackwartString(char* str, char c);
Expand Down

0 comments on commit a8dc24d

Please sign in to comment.