From 175139968a9b14c607226c74aadacbcec4844b9b Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 14 Apr 2016 18:28:56 -0500 Subject: [PATCH] error message fix: Unrecognozed ecoding --- sqstdlib/sqstdio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqstdlib/sqstdio.cpp b/sqstdlib/sqstdio.cpp index 273bb5c..9aaaccb 100644 --- a/sqstdlib/sqstdio.cpp +++ b/sqstdlib/sqstdio.cpp @@ -372,7 +372,7 @@ SQRESULT sqstd_loadfile(HSQUIRRELVM v,const SQChar *filename,SQBool printerror) } if(uc != 0xBF) { sqstd_fclose(file); - return sq_throwerror(v,_SC("Unrecognozed ecoding")); + return sq_throwerror(v,_SC("Unrecognized encoding")); } #ifdef SQUNICODE func = _io_file_lexfeed_UTF8;