(360) Non-HD height fix

This commit is contained in:
TwinAphex51224 2012-02-10 17:32:43 +01:00
parent c07bcbea53
commit 6e753d7d99

View File

@ -204,7 +204,7 @@ static void *xdk360_gfx_init(const video_info_t *video, const input_driver_t **i
D3DVIEWPORT9 vp = {0};
vp.Width = video_mode.fIsHiDef ? 1280 : 640;
vp.Height = video_mode.fIsHiDef ? 720 : 640;
vp.Height = video_mode.fIsHiDef ? 720 : 480;
vp.MinZ = 0.0f;
vp.MaxZ = 1.0f;
vid->xdk360_render_device->SetViewport(&vp);