diff options
Diffstat (limited to 'games/bunnysay/files/patch-src_bunnysay.cc')
-rw-r--r-- | games/bunnysay/files/patch-src_bunnysay.cc | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/games/bunnysay/files/patch-src_bunnysay.cc b/games/bunnysay/files/patch-src_bunnysay.cc deleted file mode 100644 index a39173cca765..000000000000 --- a/games/bunnysay/files/patch-src_bunnysay.cc +++ /dev/null @@ -1,19 +0,0 @@ ---- src/bunnysay.cc.orig 2017-02-28 03:26:39 UTC -+++ src/bunnysay.cc -@@ -99,7 +99,7 @@ void fullWidth(std::vector<std::vector<R - } - - void padTo(std::vector<std::vector<Rune>> *input, size_t width) { -- bool left = false; -+ bool left = true; - for (auto &rv: *input) { - while(rv.size() < width) { - if (left) { -@@ -109,6 +109,7 @@ void padTo(std::vector<std::vector<Rune> - } - left = !left; - } -+ left = true; - } - } - |