From a4ae2bfc526ed0135f56bbe62a25e43ab9dc1f00 Mon Sep 17 00:00:00 2001 From: Will Toohey Date: Sat, 20 Oct 2018 10:20:30 +1000 Subject: [PATCH] Fix regression in single patch pages --- js/dllpatcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/dllpatcher.js b/js/dllpatcher.js index 1e60dc3..52d7a07 100644 --- a/js/dllpatcher.js +++ b/js/dllpatcher.js @@ -381,7 +381,7 @@ DllPatcher.prototype.loadFile = function(file) { reader.onload = function(e) { self.loadBuffer(e.target.result); - this.updatePatchUI(); + self.updatePatchUI(); }; reader.readAsArrayBuffer(file);