01-08-2017, 07:21 AM
I decided to revive this thread so I made an account just to let people know how to fix this
-Step one open the "Edit" option for "start-windows-x86.bat" or which ever version
one has. (It's the one you click to open the emulator)
-Step two open a different file explorer and find your way to your version of Java
C:\Program Files (x86)\Java\jre1.8.0_111 (I copied my version of java with the
location of where one can find it.) (remove \jre1.8.0_111 and paste it in file explorer unless your java is found in the "Program Files")
I already went through and changed everything so im gonna paste it below to show what mine looks like after the change and hope some of you can find the difference. But just replace the version of Java that is in the "start-windows-x86.bat" with the version of Java you have now.
I believe the original Java that was on there was Java 6
@echo off
set PATH=%PATH%;lib\;lib\windows-x86\
if "%programfiles(x86)%XXX"=="XXX" goto JAVA32
if not exist "%programfiles(x86)%\Java\jre1.8.0_111\bin" goto JAVAMISSING
echo Running Jpcsp 32bit...
"%programfiles(x86)%\Java\jre1.8.0_111\bin\java" -Xmx1024m -Djava.library.path=lib/windows-x86 -jar bin/jpcsp.jar
goto END
:JAVA32
if not exist "%programfiles%\Java\jre1.8.0_111\bin" goto JAVAMISSING
echo Running Jpcsp 32bit...
"%programfiles%\Java\jre1.8.0_111\bin\java" -Xmx1024m -Djava.library.path=lib/windows-x86 -jar bin/jpcsp.jar
goto END
:JAVAMISSING
echo The required version of Java has not been installed or isn't recognized.
echo Go to http://java.sun.com to install the 32bit Java JRE.
pause
:END
-Step one open the "Edit" option for "start-windows-x86.bat" or which ever version
one has. (It's the one you click to open the emulator)
-Step two open a different file explorer and find your way to your version of Java
C:\Program Files (x86)\Java\jre1.8.0_111 (I copied my version of java with the
location of where one can find it.) (remove \jre1.8.0_111 and paste it in file explorer unless your java is found in the "Program Files")
I already went through and changed everything so im gonna paste it below to show what mine looks like after the change and hope some of you can find the difference. But just replace the version of Java that is in the "start-windows-x86.bat" with the version of Java you have now.
I believe the original Java that was on there was Java 6
@echo off
set PATH=%PATH%;lib\;lib\windows-x86\
if "%programfiles(x86)%XXX"=="XXX" goto JAVA32
if not exist "%programfiles(x86)%\Java\jre1.8.0_111\bin" goto JAVAMISSING
echo Running Jpcsp 32bit...
"%programfiles(x86)%\Java\jre1.8.0_111\bin\java" -Xmx1024m -Djava.library.path=lib/windows-x86 -jar bin/jpcsp.jar
goto END
:JAVA32
if not exist "%programfiles%\Java\jre1.8.0_111\bin" goto JAVAMISSING
echo Running Jpcsp 32bit...
"%programfiles%\Java\jre1.8.0_111\bin\java" -Xmx1024m -Djava.library.path=lib/windows-x86 -jar bin/jpcsp.jar
goto END
:JAVAMISSING
echo The required version of Java has not been installed or isn't recognized.
echo Go to http://java.sun.com to install the 32bit Java JRE.
pause
:END