You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed on latest revs R&C All 4 One Demo when starting shows blackscreen, fps and log stop, while other R&C games on newer engine working very nice and stable lately.
found the problem in #6967 commit 74464be
by further debugging found out problem is in CellSysCache.cpp line 118:
if (!param || (param->cacheId[0] && sysutil_check_name_string(param->cacheId, 1, CELL_SYSCACHE_ID_SIZE) != 0))
reverting it back to previous state helps the problem:
if (!param || !std::memchr(param->cacheId, '\0', CELL_SYSCACHE_ID_SIZE))
The text was updated successfully, but these errors were encountered:
Noticed on latest revs R&C All 4 One Demo when starting shows blackscreen, fps and log stop, while other R&C games on newer engine working very nice and stable lately.
found the problem in #6967 commit 74464be
by further debugging found out problem is in CellSysCache.cpp line 118:
if (!param || (param->cacheId[0] && sysutil_check_name_string(param->cacheId, 1, CELL_SYSCACHE_ID_SIZE) != 0))
reverting it back to previous state helps the problem:
if (!param || !std::memchr(param->cacheId, '\0', CELL_SYSCACHE_ID_SIZE))
The text was updated successfully, but these errors were encountered: