Fixed cellFsStReadInit issue

* Disabled automatic HLEExitOnStop option when the ELF file argument is
provided.
* Reverted some changes of last pull.
This commit is contained in:
Alexandro Sánchez Bach 2014-09-09 23:18:21 +02:00
parent 218399afcb
commit b881e095e9
7 changed files with 18 additions and 19 deletions

View file

@ -609,7 +609,7 @@ int cellAdecQueryAttr(vm::ptr<CellAdecType> type, vm::ptr<CellAdecAttr> attr)
// TODO: check values
attr->adecVerLower = 0x280000; // from dmux
attr->adecVerUpper = 0x260000;
attr->workMemSize = 4194304; // 4MB
attr->workMemSize = 4 * 1024 * 1024; // 4 MB
return CELL_OK;
}