Skip to content

Commit

Permalink
Make vendor/tng to use local lib/colors
Browse files Browse the repository at this point in the history
  • Loading branch information
danikaze committed Jan 10, 2020
1 parent d2ab4ef commit 00dec75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/tng.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 00dec75

Please sign in to comment.