mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12: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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (code)
|
switch (code.value())
|
||||||
{
|
{
|
||||||
case PACK_START_CODE:
|
case PACK_START_CODE:
|
||||||
{
|
{
|
||||||
|
|
|
@ -399,7 +399,7 @@ namespace loader
|
||||||
{
|
{
|
||||||
for (auto &phdr : m_phdrs)
|
for (auto &phdr : m_phdrs)
|
||||||
{
|
{
|
||||||
switch (phdr.p_type)
|
switch (phdr.p_type.value())
|
||||||
{
|
{
|
||||||
case 0x00000001: //LOAD
|
case 0x00000001: //LOAD
|
||||||
if (phdr.p_memsz)
|
if (phdr.p_memsz)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue