From 1b50baf8521b5d8e00729d3c4102cec0a5ae2a21 Mon Sep 17 00:00:00 2001 From: drmortalwombat <90205530+drmortalwombat@users.noreply.github.com> Date: Mon, 11 Sep 2023 13:03:07 +0200 Subject: [PATCH] Fix wrong unicode character in error message --- oscar64/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar64/Parser.cpp b/oscar64/Parser.cpp index 6c9a421..4781396 100644 --- a/oscar64/Parser.cpp +++ b/oscar64/Parser.cpp @@ -4147,7 +4147,7 @@ Declaration* Parser::ParseDeclaration(Declaration * pdec, bool variable, bool ex { Expression* exp = ParseRExpression(); if (!ndec->mBase->IsIntegerType()) - mErrors->Error(exp->mLocation, EERR_INVALID_BITFIELD, "Invalid bitfíeld for non integer type"); + mErrors->Error(exp->mLocation, EERR_INVALID_BITFIELD, "Invalid bitfield for non integer type"); else if (exp->mType == EX_CONSTANT && exp->mDecType->IsIntegerType() && exp->mDecValue->mType == DT_CONST_INTEGER) ndec->mBits = uint8(exp->mDecValue->mInteger); else