Closed GoogleCodeExporter closed 8 years ago
http://code.google.com/p/quake2-gwt-port/issues/detail?id=22 provides additional
reports of this bug.
Original comment by timothy....@gmail.com
on 18 May 2010 at 10:57
I posted a fix for this in issue 22, but I'll post it here as well since this
clearly
describes the error:
Error is caused by code in: src/jake2/render/glconfig_t.java
The fix I came up with was to change line 39 from:
version = Float.parseFloat(version_string.substring(0,3));
to:
version = version_string.replace("[^0-9\\.]+", "");
Rebuild and reinstall after changing the line number and it should get you pass
the
error reported until this issue is fixed.
Original comment by samr...@gmail.com
on 27 May 2010 at 4:01
fixed in the repository
Original comment by stefan.haustein
on 5 Jul 2010 at 10:56
Original issue reported on code.google.com by
robbies
on 11 May 2010 at 11:29