Add missing newline.

This commit is contained in:
Relintai 2020-12-26 17:48:00 +01:00
parent 374fb21257
commit f2ea46f5d7

View File

@ -7,7 +7,7 @@ void Settings::parse_file(const std::string &path) {
FILE *f = fopen(path.c_str(), "r");
if (!f) {
printf("Settings::parse_file: Error opening file!");
printf("Settings::parse_file: Error opening file!\n");
return;
}