1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Minor adjustment in debugging information for textdraw entity type.

This commit is contained in:
Sandu Liviu Catalin 2015-11-11 11:31:26 +02:00
parent 09ef3f43a3
commit f3b7f35055

View File

@ -58,7 +58,7 @@ void CTextdraw::ShowRange(SQInt32 first, SQInt32 last) const
}
else if (first < last)
{
BadArg("show_range", "show to range", "using an out of range start", first);
BadArg("show_range", "show to range", "using an out of range start", first, last);
}
else
{
@ -111,7 +111,7 @@ void CTextdraw::HideRange(SQInt32 first, SQInt32 last) const
}
else if (first < last)
{
BadArg("hide_range", "hide from range", "using an out of range start", first);
BadArg("hide_range", "hide from range", "using an out of range start", first, last);
}
else
{
@ -194,7 +194,7 @@ void CTextdraw::SetPositionRange(SQInt32 first, SQInt32 last, const Vector2i & p
}
else if (first < last)
{
BadArg("set_position_range", "set position for range", "using an out of range start", first);
BadArg("set_position_range", "set position for range", "using an out of range start", first, last);
}
else
{
@ -277,7 +277,7 @@ void CTextdraw::SetColorRange(SQInt32 first, SQInt32 last, const Color4 & col) c
}
else if (first < last)
{
BadArg("set_color_range", "set color for range", "using an out of range start", first);
BadArg("set_color_range", "set color for range", "using an out of range start", first, last);
}
else
{