mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
rsx: Restore shader disassembler to working state
This commit is contained in:
parent
067b35217a
commit
f7eacf70ec
3 changed files with 117 additions and 67 deletions
|
|
@ -232,11 +232,6 @@ void CgBinaryDisasm::TaskFP()
|
|||
m_size = 0;
|
||||
u32* data = reinterpret_cast<u32*>(&m_buffer[m_offset]);
|
||||
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
|
||||
data[i] = std::bit_cast<u32, be_t<u32>>(data[i]);
|
||||
}
|
||||
|
||||
enum
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue