Fixed assorted EGA and 5170 save/restore/reset problems
This commit is contained in:
parent
4194c28b20
commit
95673181b7
12 changed files with 1160 additions and 1010 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue