This commit is contained in:
Adam D. Ruppe 2014-12-01 22:39:11 -05:00
parent 7c13fd0a65
commit c3a5240a17
2 changed files with 12 additions and 1 deletions

View File

@ -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;

View File

@ -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);
}
}
}