diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-01-28 23:43:49 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-28 23:43:49 +0100 |
commit | 47d62840a0a17ab1d9abf62acd4542370fe5b7ad (patch) | |
tree | 8258e868d6976162c54cfaaf866cea1b08d9a5c7 /community/logstalgia/gcc6-fix.patch | |
parent | 238b6bccbab3b844079fa109d5cee096b81756d3 (diff) | |
download | aports-47d62840a0a17ab1d9abf62acd4542370fe5b7ad.tar.bz2 aports-47d62840a0a17ab1d9abf62acd4542370fe5b7ad.tar.xz |
Remove unused patches in community/
These patches are no longer used
Diffstat (limited to 'community/logstalgia/gcc6-fix.patch')
-rw-r--r-- | community/logstalgia/gcc6-fix.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/community/logstalgia/gcc6-fix.patch b/community/logstalgia/gcc6-fix.patch deleted file mode 100644 index 1033af44a9..0000000000 --- a/community/logstalgia/gcc6-fix.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/paddle.cpp.orig -+++ ./src/paddle.cpp -@@ -95,7 +95,7 @@ - - bool Paddle::mouseOver(TextArea& textarea, vec2& mouse) { - -- if(pos.x <= mouse.x && pos.x + width >= mouse.x && abs(pos.y - mouse.y) < height/2) { -+ if(pos.x <= mouse.x && pos.x + width >= mouse.x && abs(int(pos.y) - int(mouse.y)) < height/2) { - - std::vector<std::string> content; - |