PS4 [Research]PS2 emulator configuration on PS4

@nifengyuexia did you ever test burnout games on ps4? im test burnout 3 but is freeze while loading race, do u have same?
I have tested the game, except for burnout1 and 2, the other series of games are in the same situation. It freezes when the game is loaded. I can't find what caused the freezing, so it has not been fixed until now.
 
First, there is no need for text configuration, and secondly, your lua should be as concise as possible, and extra code does not need to be added! Try jak v2 emulator

try

LUA
Code:
apiRequest(1.0)

local eeObj = getEEObject()
local emuObj = getEmuObject()

local patcher = function()

eeObj.WriteMem32(0x1D77C8,0x100000B4) --speed fix

eeObj.WriteMem32(0x1D7ED4,0x2C420001) --60FPS

--Disable eAttachTargetMoveSprites
eeObj.WriteMem32(0x1D3930,0x03e00008)
eeObj.WriteMem32(0x1D3934,0x0)

--Disable DepthIntoAlpha
eeObj.WriteMem32(0x56FFA4,0x0)

--Disable DepthOfField
eeObj.WriteMem32(0x570268,0x0)

--Disable Fog
eeObj.WriteMem32(0x57004C,0x0)

--Disable Smear (require depthIntoAlpha to work anyway)
eeObj.WriteMem32(0x570098,0x0)

--Rain modifier (hacked from RainInTheHeadlights)
-- 3e000000 for full screen, 40000000 for light rain only
eeObj.WriteMem32(0x574158,0x40000000)

--Better Car Brightness (orig. 437F)
eeObj.WriteMem32(0x1C2704,0x3C01439F)

--Lower World Lights Flare
eeObj.WriteMem32(0x1C3EE0,0x3C013F40)

--Lower Road/Traffic Yellow/Orange Lights Flare
eeObj.WriteMem32(0x1C3260,0x3C013F50)
end

emuObj.AddVsyncHook(patcher)
was test it! yes it much better then previous configs! Now i feel 60FPS and gameplay around flawless but it have some audio problems, some rustles sounds and slowdowns! not critical but annoying sometime! It can be fixed if u have PS4 Pro and turn on boost mode, no audio problems then!
 
@nifengyuexia did you try The Sims 2? I heard it have graphical glitches
I haven't tested this game. If it is a general graphics error, there must be a way to fix it in the known commands, but I always think that my ability is not enough. There are many more difficult graphics problems I can't fix, so I haven't repaired any configuration that contributed to PS2 games on PS4 recently.:(
 
I haven't tested this game. If it is a general graphics error, there must be a way to fix it in the known commands, but I always think that my ability is not enough. There are many more difficult graphics problems I can't fix, so I haven't repaired any configuration that contributed to PS2 games on PS4 recently.:(
dont give up:courage:
 
I have tested the game, except for burnout1 and 2, the other series of games are in the same situation. It freezes when the game is loaded. I can't find what caused the freezing, so it has not been fixed until now.

Burnout 3 + 4 work perfectly fine. You always have to start with crash mode first in both titles. Pause > Quit. Then all the other modes will work.
 
Try some of the first emu builds like RogueV1. The ones with the video recording error on startup. And you also have to apply the 16:9 + bloom/reflection patches to get this working.
Ok what iso you use? PAL or NTSC? You use RogueV1 emu? Can you share configs again
 
You use RogueV1 emu and attached config right?
The config seems to be right. RogueV1 or some early variant. Look at the file size of the eboot.bin (3 to 4MB). There are only a handful emus with the video recording error. At least one of them will work. Don't forget to start crash mode first.
 
The config seems to be right. RogueV1 or some early variant. Look at the file size of the eboot.bin (3 to 4MB). There are only a handful emus with the video recording error. At least one of them will work. Don't forget to start crash mode first.
well ok, i try it
 
The config seems to be right. RogueV1 or some early variant. Look at the file size of the eboot.bin (3 to 4MB). There are only a handful emus with the video recording error. At least one of them will work. Don't forget to start crash mode first.
So, still no....I use RogueV1, Star Ocean and more few emus, no effect, still freeze while choice any of game modes (crash mode also).
Well, will be good if you share ur emu (without game iso), for i can test correctly, becouse i dont want stuck with this game too much! @nifengyuexia have same problems as me, so looks like u have magic emu!
 
First, there is no need for text configuration, and secondly, your lua should be as concise as possible, and extra code does not need to be added! Try jak v2 emulator[/CODE]

I went ahead and removed the txt config, extra widescreen code in the lua, and used Jak v2 like you suggested. I definitely noticed better performance right away, but couldn't stomach the stretched 4:3 aspect ratio, so I manually applied the widescreen pnach to the iso and tried again. I was excited at first because the menus no longer had any slowdown or audio stutter, but once I got in the game, it became apparent there were still problems. So for now, I'm using your recommended settings with forced 4:3 aspect ratio, which maybe the best I can expect on the base model PS4. Thanks for your help.
 
I went ahead and removed the txt config, extra widescreen code in the lua, and used Jak v2 like you suggested. I definitely noticed better performance right away, but couldn't stomach the stretched 4:3 aspect ratio, so I manually applied the widescreen pnach to the iso and tried again. I was excited at first because the menus no longer had any slowdown or audio stutter, but once I got in the game, it became apparent there were still problems. So for now, I'm using your recommended settings with forced 4:3 aspect ratio, which maybe the best I can expect on the base model PS4. Thanks for your help.
It seems that you don't know much about this game. As I mentioned before, this game itself has a widescreen setting. You need to select and enable it in the display mode of the game. If you still feel stuck in the game, You can even delete the 60PFS code and try again.
 
So, still no....I use RogueV1, Star Ocean and more few emus, no effect, still freeze while choice any of game modes (crash mode also).
Well, will be good if you share ur emu (without game iso), for i can test correctly, becouse i dont want stuck with this game too much! @nifengyuexia have same problems as me, so looks like u have magic emu!

No, @Manu Mx has made it very clear. Before entering the official game, you must first play the crash mode, and then enter the official game again, so that it will not freeze during the official game reading. This is the only thing. Method, and you need to do this at every stage. And I saw in the configuration you posted that RogueV1 does not support api 1.0, so it should be changed to api0.1 in the configuration, and the code should be rewritten by replacing the code.

Here is example:
Code:
eeInsnReplace(0x13d7f0, 0x1000ffff, 0x0804f45d)
 
No, @Manu Mx has made it very clear. Before entering the official game, you must first play the crash mode, and then enter the official game again, so that it will not freeze during the official game reading. This is the only thing. Method, and you need to do this at every stage. And I saw in the configuration you posted that RogueV1 does not support api 1.0, so it should be changed to api0.1 in the configuration, and the code should be rewritten by replacing the code.

Here is example:
Code:
eeInsnReplace(0x13d7f0, 0x1000ffff, 0x0804f45d)
did you test it?? i also say that i try crash mode first but is still freeze for me! About RogueV1, it was error while boot! If you test is, share the emu that u use, maybe u have diffent
 

Similar threads

Back
Top