Skip to content

Commit 379e44b

Browse files
committed
Decrease gapping threshold to reduce change of overloading the computer.
1 parent ac53418 commit 379e44b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace PokemonAutomation{
2525
const bool IS_BETA_VERSION = true;
2626
const int PROGRAM_VERSION_MAJOR = 0;
2727
const int PROGRAM_VERSION_MINOR = 50;
28-
const int PROGRAM_VERSION_PATCH = 10;
28+
const int PROGRAM_VERSION_PATCH = 11;
2929

3030
const std::string PROGRAM_VERSION_BASE =
3131
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/CommonFramework/Recording/StreamHistoryTracker_ParallelStreams.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class StreamHistoryTracker{
139139
std::piecewise_construct,
140140
std::forward_as_tuple(start_time),
141141
std::forward_as_tuple(new StreamRecording(
142-
m_logger, std::chrono::seconds(1),
142+
m_logger, std::chrono::milliseconds(500),
143143
m_audio_samples_per_frame,
144144
m_audio_frames_per_second,
145145
start_time

0 commit comments

Comments
 (0)