Skip to content

Commit

Permalink
6.10.1 Fixed le te re be default argument not working
Browse files Browse the repository at this point in the history
  • Loading branch information
eritpchy committed Oct 13, 2023
1 parent 7d0d43c commit 0394982
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Interfaces/VideoSubFinderCli/VideoSubFinderCli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,10 @@ bool CVideoSubFinderApp::OnCmdLineParsed(wxCmdLineParser& parser) {
wxLogMessage("ERROR: g_pVideo->SetNullRender() failed\n");
return false;
}

g_DxMin = 0;
g_DxMax = 1;
g_DyMin = 1 - 1;
g_DyMax = 1 - 0;
if (parser.Found("le", &g_DxMin))
{
if ((g_DxMin < 0) || (g_DxMin > 1.0))
Expand Down
2 changes: 1 addition & 1 deletion Interfaces/VideoSubFinderWXW/MyResource.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#pragma once

#define VSF_VERSION "6.10.0"
#define VSF_VERSION "6.10.1"

#define ID_APP_ABOUT 1100

Expand Down

0 comments on commit 0394982

Please sign in to comment.