mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
Set rendering width/height to buffer width/height
This commit is contained in:
parent
283c1f64e7
commit
4e55e6abbd
1 changed files with 5 additions and 2 deletions
|
@ -1262,9 +1262,12 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, mem32_ptr_t& args, const u3
|
|||
}
|
||||
|
||||
gcmBuffer* buffers = (gcmBuffer*)Memory.GetMemFromAddr(m_gcm_buffers_addr);
|
||||
m_width = re(buffers[m_gcm_current_buffer].width);
|
||||
m_height = re(buffers[m_gcm_current_buffer].height);
|
||||
m_buffer_width = re(buffers[m_gcm_current_buffer].width);
|
||||
m_buffer_height = re(buffers[m_gcm_current_buffer].height);
|
||||
|
||||
m_width = m_buffer_width;
|
||||
m_height = m_buffer_height;
|
||||
|
||||
if (Ini.GSDownscale.GetValue() && Ini.GSResolution.GetValue() == 4)
|
||||
{
|
||||
if (m_width == 1280 && m_height == 720)
|
||||
|
|
Loading…
Add table
Reference in a new issue