wineandroid: Use fallback implementation for screen dimensions in GetDeviceCaps().

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2018-08-22 11:43:01 +02:00
parent 0cbb086347
commit c268c283f7
1 changed files with 0 additions and 4 deletions

View File

@ -195,10 +195,6 @@ static INT ANDROID_GetDeviceCaps( PHYSDEV dev, INT cap )
{
switch(cap)
{
case HORZRES: return screen_width;
case VERTRES: return screen_height;
case DESKTOPHORZRES: return virtual_screen_rect.right - virtual_screen_rect.left;
case DESKTOPVERTRES: return virtual_screen_rect.bottom - virtual_screen_rect.top;
case BITSPIXEL: return screen_bpp;
default:
dev = GET_NEXT_PHYSDEV( dev, pGetDeviceCaps );