we can now execute code (reaches init_env() function )

This commit is contained in:
georgemoralis 2023-07-20 12:18:43 +03:00
parent cc596083f5
commit d641f7b6c4
6 changed files with 44 additions and 8 deletions

View file

@ -9,7 +9,7 @@ namespace HLE::Libs::LibC {
static void init_env() //every game/demo should probably
{
for(;;) {
printf("__debugbreak\n");
printf("life is a bitch but it did reach here\n");
}
//__debugbreak();//if we reach here it will be a great progress :D
}