Skip to content

Commit

Permalink
Fix pause via touch, changelog, bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyHairy committed Jul 26, 2018
1 parent 835c052 commit 717b5d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.9.12

* Stellerator embedded: fix pause via touch controls

# 0.9.11

* Update dependencies
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "6502.ts",
"version": "0.9.11",
"version": "0.9.12",
"description": "A 6502 emulator written in typescript",
"author": "[email protected]",
"license": "GPL-2.0+",
Expand Down
2 changes: 1 addition & 1 deletion src/web/embedded/stellerator/Stellerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ class Stellerator {
);

if (this._config.pauseViaTouch) {
this._touchIO.togglePause.addHandler(() => pauseHandler);
this._touchIO.togglePause.addHandler(pauseHandler);
}

if (this._config.fullscreenViaTouch) {
Expand Down

0 comments on commit 717b5d3

Please sign in to comment.