Ya compila

This commit is contained in:
2022-09-27 14:02:16 +02:00
parent 2528969801
commit 740e495ad0

View File

@@ -9,7 +9,7 @@ Director::Director(std::string path)
{ {
// Crea el objeto que controla los ficheros de recursos // Crea el objeto que controla los ficheros de recursos
asset = new Asset(path.substr(0, path.find_last_of("\\/")) + "../"); asset = new Asset(path.substr(0, path.find_last_of("\\/")) + "/../");
// Establece la lista de ficheros // Establece la lista de ficheros
Uint8 section = PROG_SECTION_LOGO; Uint8 section = PROG_SECTION_LOGO;
@@ -393,7 +393,7 @@ Uint8 Director::getSection()
// Establece el valor de la variable // Establece el valor de la variable
void Director::setSection(section_t section) void Director::setSection(section_t section)
{ {
section = section; this->section = section;
} }
void Director::runLogo() void Director::runLogo()