From 293df1887f4b849e96d06530c722bd39afb7b72b Mon Sep 17 00:00:00 2001 From: GriffinR Date: Wed, 24 Feb 2021 11:26:26 -0500 Subject: [PATCH] Fix comment typo --- src/script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script.c b/src/script.c index 701042da2..726c06543 100644 --- a/src/script.c +++ b/src/script.c @@ -72,7 +72,7 @@ bool8 RunScriptCommand(struct ScriptContext *ctx) return FALSE; case SCRIPT_MODE_NATIVE: // Try to call a function in C - // Continue to bytecode if no function it returns TRUE + // Continue to bytecode if no function or it returns TRUE if (ctx->nativePtr) { if (ctx->nativePtr() == TRUE)