Skip to content

Commit

Permalink
1.7.0.4 - Fix for GetMasterControllerDeviceId
Browse files Browse the repository at this point in the history
  • Loading branch information
Psychokiller1888 committed Sep 12, 2017
1 parent 3bc4245 commit fbcf56e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin/addon.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "plugin",
"name": "AirConsole",
"id": "AirConsole",
"version": "1.7.0.3",
"version": "1.7.0.4",
"author": "Psychokiller1888 for N-Dream AG",
"website": "https://www.sickrabbitstudios.com",
"documentation": "https://github.com/AirConsole/airconsole-construct3/wiki",
Expand Down
Binary file modified plugin/airconsole.c3addon
Binary file not shown.
2 changes: 1 addition & 1 deletion plugin/c2runtime/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ function AirConsoleOffline() {
}
};

Exps.prototype.MasterControllerDeviceId = function (ret) {
Exps.prototype.GetMasterControllerDeviceId = function (ret) {
var id = this.airConsole.getMasterControllerDeviceId();
ret.set_int((typeof id !== 'number' || isNaN(id)) ? -1 : id);
};
Expand Down
2 changes: 1 addition & 1 deletion plugin/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
const PLUGIN_ID = "AirConsole";
////////////////////////////////////////////

const PLUGIN_VERSION = "1.7.0.3";
const PLUGIN_VERSION = "1.7.0.4";
const PLUGIN_CATEGORY = "web";

let app = null;
Expand Down

0 comments on commit fbcf56e

Please sign in to comment.