revid/config: FileFps → FileFPS

This corrects the case of the FileFPS string literal.
This commit is contained in:
Scott 2020-01-29 09:17:58 +10:30
parent 5ff90e4411
commit 5951dbcd2b
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ func (c *Config) Validate() error {
} }
if c.FileFPS <= 0 || (c.FileFPS > 0 && c.Input != InputFile) { if c.FileFPS <= 0 || (c.FileFPS > 0 && c.Input != InputFile) {
c.logInvalidField("FileFps", defaultFileFPS) c.logInvalidField("FileFPS", defaultFileFPS)
c.FileFPS = defaultFileFPS c.FileFPS = defaultFileFPS
} }