Fix OpenGL Window#getIdentifierAsLong

This commit is contained in:
JeremyStar™ 2024-07-21 17:37:55 +02:00
parent 5cb8350a41
commit 350b18219b
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -131,7 +131,7 @@ public class Window extends de.staropensource.sosengine.graphics.classes.Window
* @since v1-alpha2
*/
public long getIdentifierAsLong() {
return Long.getLong(getIdentifier());
return Long.parseLong(getIdentifier());
}
/**