linters
This commit is contained in:
@@ -41,9 +41,11 @@ void Debug::render() { // NOLINT(readability-make-member-function-const)
|
||||
|
||||
// Watch window: valores persistentes (key: value)
|
||||
for (const auto& [key, value] : watches_) {
|
||||
const std::string LINE = key + ": " + value;
|
||||
text->write(x_, y, LINE);
|
||||
w = std::max(w, text->length(LINE));
|
||||
std::string line = key;
|
||||
line += ": ";
|
||||
line += value;
|
||||
text->write(x_, y, line);
|
||||
w = std::max(w, text->length(line));
|
||||
y += DESP_Y;
|
||||
if (y > 192 - CHAR_SIZE) {
|
||||
y = y_;
|
||||
|
||||
Reference in New Issue
Block a user