Skip to content

Commit

Permalink
Fixed default palette folder path
Browse files Browse the repository at this point in the history
  • Loading branch information
szymach committed Jul 17, 2017
1 parent 585c3df commit 417b2c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ public function loadPalette($FileName, $Overwrite = false)
{
$path = file_exists($FileName)
? $FileName
: sprintf('%s/../Resources/palettes/%s', __DIR__, ltrim($FileName, '/'))
: sprintf('%s/../resources/palettes/%s', __DIR__, ltrim($FileName, '/'))
;

$fileHandle = @fopen($path, "r");
Expand Down

0 comments on commit 417b2c7

Please sign in to comment.