fixup various code comments

This commit is contained in:
Chris Beck 2014-11-14 00:50:57 -05:00
parent e7a7206402
commit ca79d3f14a
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#textdomain wesnoth-lib
###
### Definition of the window to show chat log.
### Definition of the window to show the lua console.
###
[window]

View File

@ -570,7 +570,7 @@ surface scale_surface(const surface &surf, int w, int h, bool optimize)
gg /= a;
bb /= a;
}
r = rr >> (16); // now shift over by 16 for the bilin part, 8
r = rr >> (16); // now shift over by 16 for the bilin part
g = gg >> (16);
b = bb >> (16);
*dst_word = (a << 24) + (r << 16) + (g << 8) + b;