typo correction

This commit is contained in:
David Buzatto 2025-11-29 22:33:09 -03:00
parent b01848a9bc
commit e7ad4a2b11

View File

@ -164,13 +164,13 @@ void BuildProductionStep(PenroseLSystem *ls)
for (int i = 0; i < productionLength; i++) for (int i = 0; i < productionLength; i++)
{ {
char step = ls->production[i]; char step = ls->production[i];
int remaningSpace = STR_MAX_SIZE - strnlen(newProduction, STR_MAX_SIZE) - 1; int remainingSpace = STR_MAX_SIZE - strnlen(newProduction, STR_MAX_SIZE) - 1;
switch (step) switch (step)
{ {
case 'W': strncat(newProduction, ls->ruleW, remaningSpace); break; case 'W': strncat(newProduction, ls->ruleW, remainingSpace); break;
case 'X': strncat(newProduction, ls->ruleX, remaningSpace); break; case 'X': strncat(newProduction, ls->ruleX, remainingSpace); break;
case 'Y': strncat(newProduction, ls->ruleY, remaningSpace); break; case 'Y': strncat(newProduction, ls->ruleY, remainingSpace); break;
case 'Z': strncat(newProduction, ls->ruleZ, remaningSpace); break; case 'Z': strncat(newProduction, ls->ruleZ, remainingSpace); break;
default: default:
{ {
if (step != 'F') if (step != 'F')