mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
Small RSX fix
This commit is contained in:
parent
940d71ecdb
commit
d5d4f88c17
2 changed files with 7 additions and 1 deletions
|
@ -1166,6 +1166,12 @@ void GLGSRender::Flip()
|
|||
checkForGlError("glScissor");
|
||||
}
|
||||
|
||||
for (uint i = 0; i<m_post_draw_objs.size(); ++i)
|
||||
{
|
||||
m_post_draw_objs[i].Draw();
|
||||
}
|
||||
|
||||
m_frame->Flip(m_context);
|
||||
|
||||
static u8* src_buffer = nullptr;
|
||||
static u32 width = 0;
|
||||
|
|
|
@ -140,7 +140,7 @@ int cellAudioInit()
|
|||
|
||||
auto buf = (be_t<float>*)&Memory[buf_addr];
|
||||
|
||||
static const float k = 0.5f; // may be 1.0f
|
||||
static const float k = 1.0f; // may be 1.0f
|
||||
const float m = port.level;
|
||||
|
||||
if (port.channel == 2)
|
||||
|
|
Loading…
Add table
Reference in a new issue