Skip to content

Commit

Permalink
Merge pull request Predidit#617 from ErBWs/fix-macos-upscaler
Browse files Browse the repository at this point in the history
fix shaders absolute path joins
  • Loading branch information
Predidit authored Jan 16, 2025
2 parents 2f5ae48 + 3d528b7 commit d8de275
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/utils/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,9 @@ class Utils {
List<String> absolutePaths = shaders.map((shader) {
return path.join(baseDirectory, shader);
}).toList();
return absolutePaths.join(';');
if (Platform.isWindows) {
return absolutePaths.join(';');
}
return absolutePaths.join(':');
}
}

0 comments on commit d8de275

Please sign in to comment.