Tiny fixes related to bad printf formatting and sizes

This commit is contained in:
OM 2023-06-21 21:01:37 +02:00
parent ae054364cc
commit 3cc1e89b45
12 changed files with 96 additions and 98 deletions

View file

@ -1815,7 +1815,7 @@ void ScriptVariable::operator%=( const ScriptVariable& value )
default:
Clear();
throw ScriptException( "binary '%' applied to incompatible types '%s' and '%s'", typenames[ GetType() ], typenames[ value.GetType() ] );
throw ScriptException( "binary '%%' applied to incompatible types '%s' and '%s'", typenames[ GetType() ], typenames[ value.GetType() ] );
break;