mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 10:40:39 +00:00
(360) Non-HD height fix
This commit is contained in:
parent
c07bcbea53
commit
6e753d7d99
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user