migrant a SDL3

This commit is contained in:
2025-03-27 08:14:37 +01:00
parent a9c869baf6
commit d2286905dc
83 changed files with 570 additions and 541 deletions

View File

@@ -23,9 +23,9 @@ namespace lang
while (std::getline(rfile, line))
{
// Almacena solo las lineas que no empiezan por # o no esten vacias
const bool test1 = line.substr(0, 1) != "#";
const bool test2 = !line.empty();
if (test1 && test2)
const bool TEST1 = line.substr(0, 1) != "#";
const bool TEST2 = !line.empty();
if (TEST1 && TEST2)
{
texts.push_back(line);
}