diff options
author | Johannes Schickel | 2011-06-21 16:57:42 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-06-21 16:59:50 +0200 |
commit | 3b7c91f2a77b49a36074f666e3801d28e7ccb999 (patch) | |
tree | 2d761f11a5113e78120fd08af1235199df8bff4b /common | |
parent | 36526ef954bfd105c8a3dd143a0e68e3fb9cb6b9 (diff) | |
download | scummvm-rg350-3b7c91f2a77b49a36074f666e3801d28e7ccb999.tar.gz scummvm-rg350-3b7c91f2a77b49a36074f666e3801d28e7ccb999.tar.bz2 scummvm-rg350-3b7c91f2a77b49a36074f666e3801d28e7ccb999.zip |
COMMON: Move HerculesDimensions enum to SCUMM.
The enum is only used inside the SCUMM engine so it is rather pointless to
keep it in common/util.h right now. Also if we really want it in some common
place it should probably be better in graphics/ too.
Diffstat (limited to 'common')
-rw-r--r-- | common/util.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/util.h b/common/util.h index 5837c8beab..cd890c970f 100644 --- a/common/util.h +++ b/common/util.h @@ -208,11 +208,6 @@ enum RenderMode { kRenderAmiga = 5 }; -enum HerculesDimensions { - kHercW = 720, - kHercH = 350 -}; - struct RenderModeDescription { const char *code; const char *description; |