From c3a5240a17691e0c631434bf449e9fd7c64b38c2 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 1 Dec 2014 22:39:11 -0500 Subject: [PATCH] catchup --- color.d | 8 ++++++++ terminal.d | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/color.d b/color.d index 44b4e9d..173b0f6 100644 --- a/color.d +++ b/color.d @@ -847,6 +847,14 @@ class TrueColorImage : MemoryImage { imageData.bytes = new ubyte[w*h*4]; } + /// Creates with existing data. The data pointer is stored here. + this(int w, int h, ubyte[] data) { + _width = w; + _height = h; + assert(data.length == w * h * 4); + imageData.bytes = data; + } + /// Returns this override TrueColorImage getAsTrueColorImage() { return this; diff --git a/terminal.d b/terminal.d index 3e53031..83c926a 100644 --- a/terminal.d +++ b/terminal.d @@ -1852,7 +1852,10 @@ struct RealTimeConsoleInput { } } else { // FIXME: what if it is neither? we should check the termcap - return charPressAndRelease(nextChar(c)); + auto next = nextChar(c); + if(next == 127) // some terminals send 127 on the backspace. Let's normalize that. + next = '\b'; + return charPressAndRelease(next); } } }