Fix broken links
This commit is contained in:
parent
5bedfd8d5b
commit
14bed3dba5
3 changed files with 8 additions and 2 deletions
|
@ -84,7 +84,7 @@ class CustomizeScreen implements Screen {
|
|||
issuesButton.addListener(new ChangeListener() {
|
||||
@Override
|
||||
public void changed(ChangeEvent event, Actor actor) {
|
||||
Gdx.net.openURI("https://github.com/LonamiWeb/Klooni1010/issues");
|
||||
Gdx.net.openURI("https://github.com/LonamiWebs/Klooni1010/issues");
|
||||
}
|
||||
});
|
||||
optionsGroup.addActor(issuesButton);
|
||||
|
|
|
@ -56,6 +56,12 @@ public class MainMenuScreen extends InputListener implements Screen {
|
|||
|
||||
// Star button (on GitHub)
|
||||
final ImageButton starButton = new SoftButton(1, "star_texture");
|
||||
starButton.addListener(new ChangeListener() {
|
||||
@Override
|
||||
public void changed(ChangeEvent event, Actor actor) {
|
||||
Gdx.net.openURI("https://github.com/LonamiWebs/Klooni1010");
|
||||
}
|
||||
});
|
||||
table.add(starButton).space(16);
|
||||
|
||||
// Stats button (high scores)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue