From 3ae0c3a26359b04f22f7ace2ce7f3e9a85d59d5c Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Wed, 24 Aug 2016 14:07:45 -0700 Subject: [PATCH] Remove unused variable --- modules/pc8080/lib/video.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/pc8080/lib/video.js b/modules/pc8080/lib/video.js index c3fe6e242..3ed414f93 100644 --- a/modules/pc8080/lib/video.js +++ b/modules/pc8080/lib/video.js @@ -1204,7 +1204,6 @@ Video8080.prototype.updateVT100 = function(fForced) */ Video8080.prototype.updateScreen = function(fForced) { - var fClean; var fUpdate = true; if (!fForced) { @@ -1237,7 +1236,7 @@ Video8080.prototype.updateScreen = function(fForced) * is clean, then there's nothing to do. */ if (fUpdate && this.fCellCacheValid && this.sizeBuffer) { - if ((fClean = this.bus.cleanMemory(this.addrBuffer, this.sizeBuffer))) { + if (this.bus.cleanMemory(this.addrBuffer, this.sizeBuffer)) { fUpdate = false; } }