Implement GetLicenseArea, category improvements

Also fixed newlines, CellSailEvent, fixed CellMusic changes, fixed
console_write, fixed L10n changes and removed the login dialog for now,
until a more proper implementation.
This commit is contained in:
Raul Tambre 2015-09-13 10:26:01 +03:00
parent ea376e7751
commit 8204737efa
17 changed files with 164 additions and 423 deletions

View file

@ -145,12 +145,13 @@ s32 console_putc()
throw EXCEPTION("");
}
void console_write(vm::ptr<char> data, u32 len)
s32 console_write(vm::ptr<char> data, u32 len)
{
sysPrxForUser.Warning("console_write(data=*0x%x, len=%d)", data, len);
sysPrxForUser.Warning("*** data='%s'", data.get_ptr());
LOG_NOTICE(TTY, "%s", data.get_ptr());
LOG_NOTICE(TTY, { data.get_ptr(), len });
return CELL_OK;
}