Make vendor/tng to use local lib/colors

This commit is contained in:
danikaze 2020-01-11 02:54:46 +09:00
parent d2ab4efbf6
commit 00dec75364
1 changed files with 1 additions and 1 deletions

2
vendor/tng.js vendored
View File

@ -29,7 +29,7 @@ function PNG(file, options) {
if (!file) throw new Error('no file');
this.options = options || {};
this.colors = options.colors || require('blessed/lib/colors');
this.colors = options.colors || require('../lib/colors');
this.optimization = this.options.optimization || 'mem';
this.speed = this.options.speed || 1;