Fixed typo that causes the compile to fail.

This commit is contained in:
Barra Ó Catháin 2023-04-12 22:24:38 +01:00
parent 7b266bfc51
commit 35b3e939f1
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ SCM scheme_create_path(SCM path_name, SCM from_area_index, SCM to_area_index, SC
}
// Check if the areas exist:
1 playerArea * fromArea = getFromList(areaList, scm_to_size_t(from_area_index))->area;
playerArea * fromArea = getFromList(areaList, scm_to_size_t(from_area_index))->area;
playerArea * toArea = getFromList(areaList, scm_to_size_t(to_area_index))->area;
if (fromArea == NULL || toArea == NULL)