aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pinedo <david@lunarg.com>2015-09-29 16:56:02 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-10-01 14:05:00 -0600
commit82d9bae8831bddd2f5a03217139b7fcb4c188e61 (patch)
treee2119580082c25e4911e563862a6ea8047f2b6c9
parentcefe71484b2840f4e4d3448340162121d726e252 (diff)
downloadusermoji-82d9bae8831bddd2f5a03217139b7fcb4c188e61.tar.xz
vulkaninfo demo: Reduce the size of the console window so it fits on smaller screens
-rw-r--r--demos/vulkaninfo.c2
1 files changed, 1 insertions, 1 deletions
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;