mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
RSX: fix line width
This commit is contained in:
parent
aaf60a1869
commit
44dd770cec
2 changed files with 9 additions and 6 deletions
|
@ -1437,7 +1437,7 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, mem32_ptr_t& args, const u3
|
|||
{
|
||||
m_set_line_width = true;
|
||||
const u32 a0 = ARGS(0);
|
||||
m_line_width = (float&)a0 / 8.0;
|
||||
m_line_width = (float)a0 / 8.0f;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue