Skip to content

Commit

Permalink
Fix letters
Browse files Browse the repository at this point in the history
  • Loading branch information
mantas-done committed Feb 17, 2024
1 parent aa56f6a commit 7e91e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Code/Converters/SccConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function internalFormatToFileContent(array $internal_format, array $outpu

$full_codes = implode(' ', $code_blockes);
if ($separate_block_end && $k !== 0) {
$file_content .= self::internalTimeToScc($last_end_time, 2, $fps, $ndf) . "\t" . '942c aa' . "\r\n\r\n";
$file_content .= self::internalTimeToScc($last_end_time, 2, $fps, $ndf) . "\t" . '942c' . "\r\n\r\n";
}

$file_content .= self::internalTimeToScc($block['start'], count($code_blockes) * 2, $fps, $ndf) . "\t" . $full_codes . "\r\n\r\n";
Expand Down

0 comments on commit 7e91e40

Please sign in to comment.