From 0ab171918b4cee9634677e958435e99776927abd Mon Sep 17 00:00:00 2001 From: NicJA Date: Wed, 25 Apr 2018 01:18:40 +0000 Subject: [PATCH] correction - use SCREENWIDTH/SCREENHEIGHT git-svn-id: https://svn.aros.org/svn/aros/trunk/contrib@55130 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- Demo/NewVox/newvox.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Demo/NewVox/newvox.c b/Demo/NewVox/newvox.c index 18092646a..92ccb3227 100644 --- a/Demo/NewVox/newvox.c +++ b/Demo/NewVox/newvox.c @@ -415,9 +415,9 @@ static void getvisual(void) if (!wbscreen) { - scr = OpenScreenTags(NULL, SA_Width , W , - SA_Height , H , - SA_Depth , 8 , + scr = OpenScreenTags(NULL, SA_Width , SCREENWIDTH , + SA_Height , SCREENHEIGHT , + SA_Depth , 8 , TAG_DONE); if (!scr) cleanup("Failed to open specified screen!"); } -- 2.11.4.GIT