From 6f20b8f5a24499cd39c55001afcf99ccc987a113 Mon Sep 17 00:00:00 2001 From: uruk Date: Sat, 20 Jul 2013 11:05:21 +0200 Subject: AVALANCHE: Graph: change 'becouse' to 'because' in comments... --- engines/avalanche/graph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/avalanche/graph.cpp b/engines/avalanche/graph.cpp index 7c9d09edc5..7748dad083 100644 --- a/engines/avalanche/graph.cpp +++ b/engines/avalanche/graph.cpp @@ -89,7 +89,7 @@ void Graph::drawSprite(const SpriteInfo &sprite, byte picnum, int16 x, int16 y) delete[] mask; } - uint16 i = 0; // Becouse the original siltype starts at 5!!! See Graph.h for definition. + uint16 i = 0; // Because the original siltype starts at 5!!! See Graph.h for definition. for (byte qay = 0; qay < sprite.yl; qay++) for (int8 plane = 3; plane >= 0; plane--) // The planes are in the opposite way. @@ -103,7 +103,7 @@ void Graph::drawSprite(const SpriteInfo &sprite, byte picnum, int16 x, int16 y) } void Graph::drawPicture(const byte *source, uint16 destX, uint16 destY) { - // The height and the width are stored in 2-2 bytes. We have to add 1 to each becouse Pascal stores the value of them -1. + // The height and the width are stored in 2-2 bytes. We have to add 1 to each because Pascal stores the value of them -1. uint16 pictureWidth = READ_LE_UINT16(source) + 1; uint16 pictureHeight = READ_LE_UINT16(source + 2) + 1; -- cgit v1.2.3