EmuNewz Network
[NPJH50276] YS vs. SORA NO KISEKI problem: without any responsible at "The End". - Printable Version

+- EmuNewz Network (https://www.emunewz.net/forum)
+-- Forum: PSP Emulation (https://www.emunewz.net/forum/forumdisplay.php?fid=191)
+--- Forum: JPCSP Official Forum (https://www.emunewz.net/forum/forumdisplay.php?fid=51)
+---- Forum: Commercial Game Discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=54)
+----- Forum: JPCSP - General Discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=64)
+----- Thread: [NPJH50276] YS vs. SORA NO KISEKI problem: without any responsible at "The End". (/showthread.php?tid=95400)



[NPJH50276] YS vs. SORA NO KISEKI problem: without any responsible at "The End". - HUGO_FUKT - 11-10-2012

(03-05-2012, 05:52 PM)Servbotty Wrote: JPCSP r2465 x86
-Use Media Engine
-Decode Audio Files with SonicStage
-Use shaders (experimental)

Playable with no game breaking bugs or crashes as far as I tried. Saves and load perfectly.
A lot of user had feedbacked for me the same questions: It just stopped for responsibility at the end of the story mode ("The End" two words had shown on the screen, but it haven't anything responsable in the emulator when you have pressed any key to continue the game. It just like suspended animation.) in YS vs. SORA NO KISEKI this game. Excuse me, can the producer solve this problem? Because this problem had made a lot of players unable to finish the story mode for the game, YS vs. SORA NO KISEKI.

ANNOUNCEMENT: This isn't the error for encrypting or decrypting. It's the loading game problem why a lot of Falcom fan players had met for this problem when one of the characters for which in story mode had finished.

I am using the JPCSP version: R2838
We have met without any responsible at "The End" this screen when pressing any key on the keyboard. A lot of player had met like this in JPCSP from 1828 until to the currently newest version, this error remains unfixing.


RE: [NPJH50276] YS vs. SORA NO KISEKI problem: without any responsible at "The End". - HUGO_FUKT - 11-10-2012

Here's for the error or crash log:
THE GAME HAVE JUST A SUSPENDED ANIMATION AT "THE END", NO MATTER HOW THE PLAYERS HAVE PRESSED ANY KEY TO CONTINUE THIS KEY.
   
when I press run, it just a lot of error have bumped:
(please see the error for below)

.zip   BoundingBox Query result not available in due time.zip (Size: 1.06 KB / Downloads: 198)


RE: [NPJH50276] YS vs. SORA NO KISEKI problem: without any responsible at "The End". - sum2012 - 11-11-2012

Can you try my modify version of 2841 ?
I have increase 10 times for query result available
http://www.mediafire.com/?ddlxjwg2mi5cyjr

Attach is my full modify source
src\jpcsp\graphics\RE\BaseRenderingEngineFunction.java
Code:
@Override
    public boolean isBoundingBoxVisible() {
        boolean isVisible = true;

        if (usePartialSoftwareTestForBoundingBox && bboxVisible != VisibilityTestResult.mustUseQuery) {
            isVisible = (bboxVisible == VisibilityTestResult.visible);
            if (log.isDebugEnabled()) {
                log.debug("Used software test for BBOX, visible=" + isVisible);
            }
        } else if (bboxQueryInitialized) {
            if (usePartialSoftwareTestForBoundingBox && log.isDebugEnabled()) {
                log.debug("Failed to use software test for BBOX");
            }

            boolean resultAvailable = false;

            // Wait for query result available
            for (int i = 0; i < 200000; i++) {//changed here