fix last deploy_tool patch
This commit is contained in:
@@ -189,8 +189,8 @@ void PIScreen::SystemConsole::print() {
|
|||||||
for (int j = 0; j < dh; ++j) {
|
for (int j = 0; j < dh; ++j) {
|
||||||
int k = j * dw + i;
|
int k = j * dw + i;
|
||||||
Cell & c(cells[j + dy0][i + dx0]);
|
Cell & c(cells[j + dy0][i + dx0]);
|
||||||
PRIVATE->chars[k].Char.UnicodeChar = 0;
|
PRIVATE->chars[k].Char.UnicodeChar = c.symbol.unicode16Code();
|
||||||
PRIVATE->chars[k].Char.AsciiChar = c.symbol.toConsole1Byte();
|
// PRIVATE->chars[k].Char.AsciiChar = c.symbol.toConsole1Byte();
|
||||||
PRIVATE->chars[k].Attributes = attributes(c);
|
PRIVATE->chars[k].Attributes = attributes(c);
|
||||||
}
|
}
|
||||||
// piCout << "draw" << dw << dh;
|
// piCout << "draw" << dw << dh;
|
||||||
|
|||||||
@@ -468,7 +468,7 @@ bool procDpkg(const PIString & l) {
|
|||||||
PIStringList lines = vs.split('\n').reverse();
|
PIStringList lines = vs.split('\n').reverse();
|
||||||
for (auto l: lines) {
|
for (auto l: lines) {
|
||||||
l = l.left(l.find(":"));
|
l = l.left(l.find(":"));
|
||||||
if (!l.isEmpty() && !l.endsWith("-cross")) all_deps << vs;
|
if (!l.isEmpty() && !l.endsWith("-cross")) all_deps << l;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user