forked from StarOpenSource/Engine
Fix OpenGL Window#getIdentifierAsLong
This commit is contained in:
parent
5cb8350a41
commit
350b18219b
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue