Skip to content

Commit

Permalink
Kept number in movie.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Mar 1, 2024
1 parent d9ed3de commit 4cee755
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mrv2/lib/mrvFl/mrvSaveMovie.cpp
Expand Up @@ -75,7 +75,7 @@ namespace mrv

const std::string& directory = path.getDirectory();
const std::string& baseName = path.getBaseName();
const std::string& number = path.getNumber();
const std::string& number = path.getNumber();
const std::string& extension = path.getExtension();

std::string newFile = directory + baseName + number + extension;
Expand Down Expand Up @@ -214,6 +214,7 @@ namespace mrv
}

newFile = directory + baseName + number + newExtension;

if (newFile != file)
{
if (fs::exists(newFile))
Expand Down

0 comments on commit 4cee755

Please sign in to comment.