Skip to content

Commit

Permalink
Tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
grimes2 committed May 27, 2023
1 parent 8584fcd commit 4935dbb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions foo_preview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ static constexpr const char* component_name = "Preview";

DECLARE_COMPONENT_VERSION(
component_name,
"1.23",
"1.24",
"grimes\n\n"
"Build: " __TIME__ ", " __DATE__
);
Expand Down Expand Up @@ -303,10 +303,10 @@ class play_callback_preview : public play_callback_static
if (preview_end_percent3 > preview_start2) {
preview_length2 = (preview_end_percent3 - preview_start2);
}
else {
cfg_preview_length.get(preview_length);
preview_length2 = atoi(preview_length);
}
}
else {
cfg_preview_length.get(preview_length);
preview_length2 = atoi(preview_length);
}
if (preview_length2 > preview_length_limit2) {
preview_length2 = preview_length_limit2;
Expand Down

0 comments on commit 4935dbb

Please sign in to comment.