foxygit / doom Log in
commit 55a1c1c9e5ddc3c4e4e27240860d48bdb5701798
Author:     Simon Howard <fraggle+github@gmail.com>
AuthorDate: Wed Jan 10 03:01:46 2018 +0000
Commit:     GitHub <noreply@github.com>
CommitDate: Wed Jan 10 03:01:46 2018 +0000

    hexen: Fix spelling error

    Thanks Fabian.
---
 src/hexen/p_acs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hexen/p_acs.c b/src/hexen/p_acs.c
index 3d370326..49bff507 100644
--- a/src/hexen/p_acs.c
+++ b/src/hexen/p_acs.c
@@ -323,7 +323,7 @@ static void ACSAssert(int condition, char *fmt, ...)
     va_start(args, fmt);
     M_vsnprintf(buf, sizeof(buf), fmt, args);
     va_end(args);
-    I_Error("ACS assertation failure: in %s: %s", EvalContext, buf);
+    I_Error("ACS assertion failure: in %s: %s", EvalContext, buf);
 }

 //==========================================================================