From 35b3e939f1ffd79a36bd47d56a338e9050f83f0d Mon Sep 17 00:00:00 2001 From: Barry Kane Date: Wed, 12 Apr 2023 22:24:38 +0100 Subject: [PATCH] Fixed typo that causes the compile to fail. --- src/schemeintegration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemeintegration.c b/src/schemeintegration.c index 63c9312..6a87308 100644 --- a/src/schemeintegration.c +++ b/src/schemeintegration.c @@ -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)