# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000061a7517b, pid=1700, tid=5652
#
# JRE version: Java(TM) SE Runtime Environment (7.0_55-b13) (build 1.7.0_55-b13)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (24.55-b03 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [awt.dll+0x7517b]
It's running on windows 8/64bit. I've noticed that there are different command lines for the java call in run.bat, one with "-xmx512m", the other two with "-xmx256m". I think that's a typo and I've therefor changed it all to "-xmx512m". But I don't know if that has anything to do with the exception. It keeps crashing with either setting.
Any ideas?
The xmx value is the maximum memory the process can take! You would get another exception if that is the problem, usally out of memory error or Java Heap space....so the error you are getting has another cause and will not be fixed by changing the max mem value. Looks like there is a problem with the awt (https://en.wikipedia.org/wiki/Abstract_Window_Toolkit) --> a component for creating the gui. So this seems to be a java bug, try to use the newest Java 7 or Java 8 version (7u71 seems to be the newest you have 7u55)
Thanks mate, I will try to update java to the latest version!