Skip to content

Commit

Permalink
Decrease gapping threshold to reduce change of overloading the computer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Dec 8, 2024
1 parent ac53418 commit 379e44b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SerialPrograms/Source/CommonFramework/Globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace PokemonAutomation{
const bool IS_BETA_VERSION = true;
const int PROGRAM_VERSION_MAJOR = 0;
const int PROGRAM_VERSION_MINOR = 50;
const int PROGRAM_VERSION_PATCH = 10;
const int PROGRAM_VERSION_PATCH = 11;

const std::string PROGRAM_VERSION_BASE =
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class StreamHistoryTracker{
std::piecewise_construct,
std::forward_as_tuple(start_time),
std::forward_as_tuple(new StreamRecording(
m_logger, std::chrono::seconds(1),
m_logger, std::chrono::milliseconds(500),
m_audio_samples_per_frame,
m_audio_frames_per_second,
start_time
Expand Down

0 comments on commit 379e44b

Please sign in to comment.