hle: make cellSubDisplayInit returns CELL_SUBDISPLAY_ERROR_ZERO_REGISTERED

This commit is contained in:
scribam 2018-05-03 21:48:23 +02:00 committed by Ivan
parent 25ec899cfe
commit ff1b0d73b7
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ void fmt_class_string<CellSubDisplayError>::format(std::string& out, u64 arg)
error_code cellSubDisplayInit(vm::ptr<CellSubDisplayParam> pParam, vm::ptr<CellSubDisplayHandler> func, vm::ptr<void> userdata, u32 container) error_code cellSubDisplayInit(vm::ptr<CellSubDisplayParam> pParam, vm::ptr<CellSubDisplayHandler> func, vm::ptr<void> userdata, u32 container)
{ {
cellSubDisplay.todo("cellSubDisplayInit(pParam=*0x%x, func=*0x%x, userdata=*0x%x, container=0x%x)", pParam, func, userdata, container); cellSubDisplay.todo("cellSubDisplayInit(pParam=*0x%x, func=*0x%x, userdata=*0x%x, container=0x%x)", pParam, func, userdata, container);
return CELL_OK; return CELL_SUBDISPLAY_ERROR_ZERO_REGISTERED;
} }
error_code cellSubDisplayEnd() error_code cellSubDisplayEnd()