From: Jay Freeman (saurik) Date: Thu, 13 Sep 2012 06:19:29 +0000 (-0700) Subject: Fix display mistakes caused by multi-line history. X-Git-Tag: v0.9.459~13 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/dd05902964547b2fe566f8c3131d7d1ff622ce44?ds=sidebyside Fix display mistakes caused by multi-line history. --- diff --git a/Display.cpp b/Display.cpp index adfabdb..fbca8df 100644 --- a/Display.cpp +++ b/Display.cpp @@ -80,13 +80,14 @@ CYCursor CYDisplayOutput(int (*put)(int), int width, const char *data, ssize_t o break; default: - if (put != NULL) - put(next); - current_ += CYCursor(0, 1); if (current_.imag() == width) + case '\n': current_ = CYCursor(current_.real() + 1, 0); + if (put != NULL) + put(next); break; + } }