correct indentation

This commit is contained in:
Axel Kohlmeyer 2021-01-17 16:06:08 -05:00
parent d4a0006388
commit e88d42f596
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 4 additions and 2 deletions

View File

@ -295,12 +295,14 @@ int main (int argc, char *argv[])
}
/* set defaults, if nothing else was given */
if (frc_dir_name == NULL)
if (frc_dir_name == NULL) {
#if (_WIN32)
frc_dir_name = "..\\frc_files";
#else
frc_dir_name = "../frc_files";
frc_dir_name = "../frc_files";
#endif
}
if (frc_file_name == NULL)
frc_file_name = "cvff.frc";