mirror of https://github.com/adamdruppe/arsd.git
catchup
This commit is contained in:
parent
7c13fd0a65
commit
c3a5240a17
8
color.d
8
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;
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue