aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl
diff options
context:
space:
mode:
authorJohn Willis2009-08-02 21:18:25 +0000
committerJohn Willis2009-08-02 21:18:25 +0000
commit9d360d946b35a1a520a5b43b688f085ab7e18727 (patch)
tree60146595f43317b6033ca3c5080dbd29f39c6616 /backends/platform/sdl
parentacec9026a10aaec94577bbaeade91d97689c7b55 (diff)
downloadscummvm-rg350-9d360d946b35a1a520a5b43b688f085ab7e18727.tar.gz
scummvm-rg350-9d360d946b35a1a520a5b43b688f085ab7e18727.tar.bz2
scummvm-rg350-9d360d946b35a1a520a5b43b688f085ab7e18727.zip
GP2XWiz/SDL: Fix 2 small typos.
svn-id: r43010
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r--backends/platform/sdl/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/graphics.cpp b/backends/platform/sdl/graphics.cpp
index 5fe4f12fe3..ffdcd675e6 100644
--- a/backends/platform/sdl/graphics.cpp
+++ b/backends/platform/sdl/graphics.cpp
@@ -675,7 +675,7 @@ void OSystem_SDL::internUpdateScreen() {
for (r = _dirtyRectList; r != lastRect; ++r) {
dst = *r;
- dst.x++; // Shift rect by one since 2xSai needs to acces the data around
+ dst.x++; // Shift rect by one since 2xSai needs to access the data around
dst.y++; // any pixel to scale it, and we want to avoid mem access crashes.
if (SDL_BlitSurface(origSurf, r, srcSurf, &dst) != 0)