mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Compilation fix
This commit is contained in:
parent
bf7cf0ee9d
commit
824b0f832a
2 changed files with 2 additions and 2 deletions
|
@ -356,7 +356,7 @@ u32 dmuxOpen(Demuxer* dmux_ptr)
|
|||
continue;
|
||||
}
|
||||
|
||||
switch (code)
|
||||
switch (code.value())
|
||||
{
|
||||
case PACK_START_CODE:
|
||||
{
|
||||
|
|
|
@ -399,7 +399,7 @@ namespace loader
|
|||
{
|
||||
for (auto &phdr : m_phdrs)
|
||||
{
|
||||
switch (phdr.p_type)
|
||||
switch (phdr.p_type.value())
|
||||
{
|
||||
case 0x00000001: //LOAD
|
||||
if (phdr.p_memsz)
|
||||
|
|
Loading…
Add table
Reference in a new issue