Fixed assorted EGA and 5170 save/restore/reset problems

This commit is contained in:
Jeff Parsons 2014-10-25 22:49:23 -07:00 committed by jeffpar
commit 95673181b7
12 changed files with 1160 additions and 1010 deletions

View file

@ -225,7 +225,11 @@ State.prototype = {
* @param {Object|string} data
*/
set: function(id, data) {
this[this.id][id] = data;
try {
this[this.id][id] = data;
} catch(e) {
Component.log(e.message)
}
},
/**
* get(id)