Skip to content

Commit

Permalink
fixed a glitch preventing the final file from being saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
ex-nerd committed Jan 8, 2004
1 parent 223a3f1 commit 7b932c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion trunk/export_SVCD.pm
Expand Up @@ -283,7 +283,8 @@ package export_SVCD;
sub cleanup {
my $self = shift;
# Remove any temporary files
foreach my $file ("$self->{fifodir}/audout", "$self->{fifodir}/vidout", $self->{tmp_a}, $self->{tmp_v}) {
#foreach my $file ("$self->{fifodir}/audout", "$self->{fifodir}/vidout", $self->{tmp_a}, $self->{tmp_v}) {
foreach my $file ("$self->{fifodir}/audout", "$self->{fifodir}/vidout") {
unlink $file if (-e $file);
}
rmdir $self->{fifodir} if (-d $self->{fifodir});
Expand Down
2 changes: 1 addition & 1 deletion trunk/gui_cli.pm
Expand Up @@ -82,7 +82,7 @@ package gui_cli;
# Notify the user
print "Encode lasted: $timestr";
# Quit gracefully
Quit();
main::Quit();
}

sub query_filename {
Expand Down

0 comments on commit 7b932c6

Please sign in to comment.