Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how can i set breakpoint before the game loads any assets?
05-30-2016, 01:08 AM
Post: #2
RE: how can i set breakpoint before the game loads any assets?
Under "Debug", uncheck "Run on Load". Then open the game (it will be paused.)

If the data is already loaded at this point, it means it's compiled into the game's binary. Sometimes games do this - they may even have preloaded data that can also be found under USRDIR.

This means it's part of the EBOOT.

But games can (this is rare) load at a different address. If it isn't loaded yet with the above steps, you can now step through to find out when it is.

As for checking when games load from files, you can set a breakpoint inside the zz_sceIoRead function (which is the stub that calls sceIoRead - games can't/don't call sceIoRead directly, they always use the stub.)

-[Unknown]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: how can i set breakpoint before the game loads any assets? - [Unknown] - 05-30-2016 01:08 AM

Forum Jump: