diff options
author | rubidium <rubidium@openttd.org> | 2009-03-15 00:32:18 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-03-15 00:32:18 +0000 |
commit | b25a4f8231f3ded44038ea454a3d4c6a2dc9217d (patch) | |
tree | 776122508c686680b9c97f37ba3cb92ef905d67f /src/blitter | |
parent | d72273d1f3b55df0e301408d630f24ef92ea8479 (diff) | |
download | openttd-b25a4f8231f3ded44038ea454a3d4c6a2dc9217d.tar.xz |
(svn r15718) -Cleanup: apply some comment coding style on the rest of the sources too
Diffstat (limited to 'src/blitter')
-rw-r--r-- | src/blitter/32bpp_base.cpp | 2 | ||||
-rw-r--r-- | src/blitter/8bpp_base.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/blitter/32bpp_base.cpp b/src/blitter/32bpp_base.cpp index f4863e55e..96660b34c 100644 --- a/src/blitter/32bpp_base.cpp +++ b/src/blitter/32bpp_base.cpp @@ -128,7 +128,7 @@ void Blitter_32bppBase::ScrollBuffer(void *video, int &left, int &top, int &widt uint32 *dst; if (scroll_y > 0) { - /*Calculate pointers */ + /* Calculate pointers */ dst = (uint32 *)video + left + (top + height - 1) * _screen.pitch; src = dst - scroll_y * _screen.pitch; diff --git a/src/blitter/8bpp_base.cpp b/src/blitter/8bpp_base.cpp index 7033e2fa1..0e0ed0ceb 100644 --- a/src/blitter/8bpp_base.cpp +++ b/src/blitter/8bpp_base.cpp @@ -132,7 +132,7 @@ void Blitter_8bppBase::ScrollBuffer(void *video, int &left, int &top, int &width uint8 *dst; if (scroll_y > 0) { - /*Calculate pointers */ + /* Calculate pointers */ dst = (uint8 *)video + left + (top + height - 1) * _screen.pitch; src = dst - scroll_y * _screen.pitch; |