mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
removed extra perentheses pair
This commit is contained in:
parent
c9d2aed286
commit
6cab5b5591
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ void CgBinaryDisasm::TaskFP()
|
|||
{
|
||||
m_size = 0;
|
||||
u32* data = reinterpret_cast<u32*>(&m_buffer[m_offset]);
|
||||
ensure(((m_buffer_size - m_offset) % sizeof(u32) == 0));
|
||||
ensure((m_buffer_size - m_offset) % sizeof(u32) == 0);
|
||||
for (u32 i = 0; i < (m_buffer_size - m_offset) / sizeof(u32); i++)
|
||||
{
|
||||
// Get BE data
|
||||
|
|
Loading…
Add table
Reference in a new issue