forked from TeamTofuShop/segatools
platform/pcbid.c: Return HRESULT for consistency
This commit is contained in:
@ -69,7 +69,11 @@ HRESULT platform_hook_init(
|
||||
return hr;
|
||||
}
|
||||
|
||||
pcbid_hook_init(&cfg->pcbid);
|
||||
hr = pcbid_hook_init(&cfg->pcbid);
|
||||
|
||||
if (FAILED(hr)) {
|
||||
return hr;
|
||||
}
|
||||
|
||||
hr = vfs_hook_init(&cfg->vfs);
|
||||
|
||||
|
Reference in New Issue
Block a user