From 9cbaacb13fe96bbd95ef3aeda49b6a51ec932144 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Tue, 27 Jun 2017 00:34:56 +0300 Subject: [PATCH] cellVideoOut: Enable 59.94 Hz required for some games --- rpcs3/Emu/Cell/Modules/cellVideoOut.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp b/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp index 271e1b2524..624ca2c431 100644 --- a/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp +++ b/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp @@ -199,7 +199,7 @@ error_code cellVideoOutGetDeviceInfo(u32 videoOut, u32 deviceIndex, vm::ptrcolorInfo.gamma = 100; info->availableModes[0].aspect = g_video_out_aspect_id.at(g_cfg.video.aspect_ratio); info->availableModes[0].conversion = CELL_VIDEO_OUT_DISPLAY_CONVERSION_NONE; - info->availableModes[0].refreshRates = CELL_VIDEO_OUT_REFRESH_RATE_60HZ; + info->availableModes[0].refreshRates = CELL_VIDEO_OUT_REFRESH_RATE_60HZ | CELL_VIDEO_OUT_REFRESH_RATE_59_94HZ; info->availableModes[0].resolutionId = g_video_out_resolution_id.at(g_cfg.video.resolution); info->availableModes[0].scanMode = CELL_VIDEO_OUT_SCAN_MODE_PROGRESSIVE; return CELL_OK;