aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-09-08 22:58:14 +0200
committerdec05eba <dec05eba@protonmail.com>2022-09-08 22:58:14 +0200
commitb677cfe8c261bae436d3e70a45256d79cfda28e3 (patch)
tree48373423144b837827b0123be54eb13deed5c503 /include
parentd0dda48e791e6f08f6be3936623a2c305caacb3c (diff)
Remove linux specific sendfile function (unused)
Diffstat (limited to 'include')
-rw-r--r--include/AsyncImageLoader.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/AsyncImageLoader.hpp b/include/AsyncImageLoader.hpp
index c482a3a..986430c 100644
--- a/include/AsyncImageLoader.hpp
+++ b/include/AsyncImageLoader.hpp
@@ -39,7 +39,7 @@ namespace QuickMedia {
// If |symlink_if_no_resize| is false then a copy is made from |thumbnail_path| to |thumbnail_path_resized| instead of a symlink if |thumbnail_path| is not larger than |resize_target_size|.
// One example of why you might not want a symlink is if |thumbnail_path| is a temporary file.
- bool create_thumbnail(const Path &thumbnail_path, const Path &thumbnail_path_resized, mgl::vec2i resize_target_size, ContentType content_type, bool symlink_if_no_resize);
+ bool create_thumbnail(const Path &thumbnail_path, const Path &thumbnail_path_resized, mgl::vec2i resize_target_size, ContentType content_type);
constexpr int NUM_IMAGE_DOWNLOAD_PARALLEL = 4;
constexpr int NUM_IMAGE_LOAD_PARALLEL = 4;