diff options
author | Max Horn | 2006-02-20 20:29:02 +0000 |
---|---|---|
committer | Max Horn | 2006-02-20 20:29:02 +0000 |
commit | 7335d348ba43c1deaf5e97f222959de3d3e30cbc (patch) | |
tree | d4d7876916bf3639b198a8d22620fc71e19e1758 /backends | |
parent | 6160a17b3005353781143cd7cc475b112ad68f03 (diff) | |
download | scummvm-rg350-7335d348ba43c1deaf5e97f222959de3d3e30cbc.tar.gz scummvm-rg350-7335d348ba43c1deaf5e97f222959de3d3e30cbc.tar.bz2 scummvm-rg350-7335d348ba43c1deaf5e97f222959de3d3e30cbc.zip |
Moved common/scaler* to graphics/
svn-id: r20797
Diffstat (limited to 'backends')
-rw-r--r-- | backends/sdl/graphics.cpp | 2 | ||||
-rw-r--r-- | backends/sdl/sdl-common.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/sdl/graphics.cpp b/backends/sdl/graphics.cpp index a711a46cc7..cdbb23472e 100644 --- a/backends/sdl/graphics.cpp +++ b/backends/sdl/graphics.cpp @@ -22,10 +22,10 @@ */ #include "backends/sdl/sdl-common.h" -#include "common/scaler.h" #include "common/util.h" #include "graphics/font.h" #include "graphics/fontman.h" +#include "graphics/scaler.h" #include "graphics/surface.h" static const OSystem::GraphicsMode s_supportedGraphicsModes[] = { diff --git a/backends/sdl/sdl-common.h b/backends/sdl/sdl-common.h index 78953ff918..c7d19281a7 100644 --- a/backends/sdl/sdl-common.h +++ b/backends/sdl/sdl-common.h @@ -26,8 +26,8 @@ #include "common/stdafx.h" #include "common/scummsys.h" -#include "common/scaler.h" #include "common/system.h" +#include "graphics/scaler.h" #include "backends/intern.h" #include <SDL.h> |