From 82d9bae8831bddd2f5a03217139b7fcb4c188e61 Mon Sep 17 00:00:00 2001 From: David Pinedo Date: Tue, 29 Sep 2015 16:56:02 -0600 Subject: vulkaninfo demo: Reduce the size of the console window so it fits on smaller screens --- demos/vulkaninfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index 52af6dfd..c6aec301 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -1146,7 +1146,7 @@ bool SetStdOutToNewConsole() return false; r.Left = r.Top = 0; r.Right = csbi.dwSize.X-1; - r.Bottom = 60; + r.Bottom = 50; if (!SetConsoleWindowInfo(consoleHandle, true, &r)) return false; -- cgit v1.2.3