Skip to content

Commit

Permalink
Fixed version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Eemeli Kelokorpi committed Apr 16, 2014
1 parent 1c2aeab commit 35b9fb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/engine/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var core = {
Current engine version.
@property {String} version
**/
version: '1.3.2',
version: '1.4.0',
/**
Engine settings.
@property {Object} config
Expand Down
4 changes: 2 additions & 2 deletions src/engine/scene.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,11 @@ game.Scene = game.Class.extend({
},

pause: function() {
game.audio.pauseAll();
if (game.audio) game.audio.pauseAll();
},

resume: function() {
game.audio.resumeAll();
if (game.audio) game.audio.resumeAll();
}
});

Expand Down

0 comments on commit 35b9fb4

Please sign in to comment.