Skip to content

Commit

Permalink
Fix code style to match that of surrounding code
Browse files Browse the repository at this point in the history
  • Loading branch information
FireyFly committed Feb 27, 2014
1 parent d2fad06 commit 8caee16
Showing 1 changed file with 1 addition and 2 deletions.
Empty file modified terminal.cpp
Whitespace-only changes.
3 changes: 1 addition & 2 deletions textrender.cpp
Expand Up @@ -56,9 +56,8 @@ TextRender::TextRender(QQuickItem *parent) :
//colour cube
for (int r = 0x00; r < 0x100; r += 0x33)
for (int g = 0x00; g < 0x100; g += 0x33)
for (int b = 0x00; b < 0x100; b += 0x33) {
for (int b = 0x00; b < 0x100; b += 0x33)
iColorTable.append(QColor(r, g, b));
}

//greyscale ramp
int ramp[] = {
Expand Down

0 comments on commit 8caee16

Please sign in to comment.