otavepto / gbe_fork

Fork of https://gitlab.com/Mr_Goldberg/goldberg_emulator
https://gitlab.com/Mr_Goldberg/goldberg_emulator
GNU Lesser General Public License v3.0
185 stars 54 forks source link

Black screen in Resident Evil 0 #186

Closed peterclaudius closed 1 month ago

peterclaudius commented 1 month ago

STEAM_LOG.txt

otavepto commented 1 month ago

restore all original files and use cold client loader. set disable_networking=1, and set disable_lan_only=0 then post another log.

CHESIRE721 commented 1 month ago

restore all original files and use cold client loader. set disable_networking=1, and set disable_lan_only=0 then post another log.

This issue can be resolved by removing the following lines, as the configuration provided by the generator is including data that the game cannot access due to a depot exclusive to a region.

In the depots.txt file, you should delete the line: 339343 (since this part is requesting the Japanese language depot, which can only be obtained by purchasing the Japanese version exclusive to Japan, as it also has a different executable) That's why you are getting a black screen, as the emulator is looking for this depot and blocking the game until it can find the depot.

Then, delete the next line: 381714 (this one is requesting a depot for DLC skins, which nobody has available, so it's better to remove it; also, remove it from the lines where the DLC IDs are).

Finally, you should generate the steam_interfaces file, as it's replacing the steam_api.dll file.

otavepto commented 1 month ago

thanks a lot @CHESIRE721 👍 the game indeed kept calling the depots function but I didn't realize it's actually verifying them.

peterclaudius commented 1 month ago

thx CHESIRE721 and otavepto