Modificados algunos printf

This commit is contained in:
2022-08-27 14:35:51 +02:00
parent 11a8ea8c24
commit e94e750ca1
2 changed files with 4 additions and 4 deletions

View File

@@ -224,7 +224,7 @@ bool AnimatedSprite::load(std::string filePath)
}
// Cierra el fichero
printf("Closing file %s\n", filename.c_str());
printf("Closing file %s\n\n", filename.c_str());
file.close();
}
// El fichero no se puede abrir

View File

@@ -135,7 +135,7 @@ bool Map::load(std::string file_path)
} while (line != "[/moving platform]");
printf("** actor moving platform loaded\n");
printf("** actor moving platform loaded\n\n");
actors.push_back(new ActorMovingPlatform(actor, p1, p2));
}
@@ -165,7 +165,7 @@ bool Map::load(std::string file_path)
} while (line != "[/diamond]");
printf("** actor diamond loaded\n");
printf("** actor diamond loaded\n\n");
actors.push_back(new ActorDiamond(actor));
}
@@ -207,7 +207,7 @@ bool Map::load(std::string file_path)
}
// Cierra el fichero
printf("Closing file %s\n", filename.c_str());
printf("Closing file %s\n\n", filename.c_str());
file.close();
}
// El fichero no se puede abrir