[DEBUG] correct color interface

This commit is contained in:
Edouard DUPIN 2018-10-23 22:06:27 +02:00
parent 247ada05cb
commit 088e9b1a2d

View File

@ -237,7 +237,7 @@ namespace etk {
if (tmp < 10) {
out += ('0'+tmp);
} else {
out += ('A'+tmp);
out += ('A'+tmp-10);
}
}
return out;