diff --git a/src/Chat.c b/src/Chat.c index 294054962..7c78d2ada 100644 --- a/src/Chat.c +++ b/src/Chat.c @@ -371,7 +371,7 @@ static struct ChatCommand RenderTypeCommand = { static void ResolutionCommand_Execute(const String* args, int argsCount) { int width, height; if (argsCount < 2) { - Chat_AddRaw("&e/client: &cYou didn't specify width and height"); + Chat_Add2("&e/client: &fCurrent resolution is %i x %i", &Window_ClientBounds.Width, &Window_ClientBounds.Height); } else if (!Convert_ParseInt(&args[0], &width) || !Convert_ParseInt(&args[1], &height)) { Chat_AddRaw("&e/client: &cWidth and height must be integers."); } else if (width <= 0 || height <= 0) {