1
General / Re: Mac OS X issue with jsfml.rar
« on: June 08, 2015, 05:43:15 pm »
it's fine, finally found what was wrong.
Seems like
Seems like
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
Game game = new Game(0);
} catch (Exception e) {
e.printStackTrace();
}
}
});
doesn't work on Mac os X but @Override
public void run() {
try {
Game game = new Game(0);
} catch (Exception e) {
e.printStackTrace();
}
}
});
Game game = new Game();
is working fine