aboutsummaryrefslogtreecommitdiff
path: root/sword2/driver
diff options
context:
space:
mode:
authorMax Horn2004-11-26 00:18:48 +0000
committerMax Horn2004-11-26 00:18:48 +0000
commit6df3e8dc6fd41bce4a5072bc753dd28c032aaff1 (patch)
tree46e4f63b22e9b4b0fdd03bbd1fd77c0c6b133186 /sword2/driver
parentb3e5b875da37acb0436b8169075c0e9fada36aaa (diff)
downloadscummvm-rg350-6df3e8dc6fd41bce4a5072bc753dd28c032aaff1.tar.gz
scummvm-rg350-6df3e8dc6fd41bce4a5072bc753dd28c032aaff1.tar.bz2
scummvm-rg350-6df3e8dc6fd41bce4a5072bc753dd28c032aaff1.zip
Spelling
svn-id: r15890
Diffstat (limited to 'sword2/driver')
-rw-r--r--sword2/driver/render.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/driver/render.cpp b/sword2/driver/render.cpp
index bd9fba2c64..920dc3580e 100644
--- a/sword2/driver/render.cpp
+++ b/sword2/driver/render.cpp
@@ -213,7 +213,7 @@ void Graphics::plotPoint(int16 x, int16 y, uint8 colour) {
* @param colour colour of the line
*/
-// Uses Bressnham's incremental algorithm!
+// Uses Bresenham's incremental algorithm!
void Graphics::drawLine(int16 x0, int16 y0, int16 x1, int16 y1, uint8 colour) {
int dxmod, dymod;