summaryrefslogtreecommitdiff
path: root/src/texteff.cpp
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-05-19 22:48:04 +0000
committertruelight <truelight@openttd.org>2007-05-19 22:48:04 +0000
commitd2c750b2c944e86680b4f64e4f7fab9b96356807 (patch)
tree69918d97ffcd2399c422767b0ca61c1c2c898aa4 /src/texteff.cpp
parent6670d1c01864cf53238399e8c7ce6ab58a292560 (diff)
downloadopenttd-d2c750b2c944e86680b4f64e4f7fab9b96356807.tar.xz
(svn r9884) -Feature: 2 new zoom-out levels: 8 times and 16 times
-Codechange: unified the blitter function so we have 1 function for all zoom-levels -Codechange: make most of the label functions work with zoom-level instead of magic numbers and big switches per zoom-level -Codechange: MakeXXXDirty() functions didn't take into account zoom-level, but just used the biggest possible value -Codechange: simplified blitter functions to avoid code duplication
Diffstat (limited to 'src/texteff.cpp')
-rw-r--r--src/texteff.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/texteff.cpp b/src/texteff.cpp
index bb187ac15..c9708d4d7 100644
--- a/src/texteff.cpp
+++ b/src/texteff.cpp
@@ -352,6 +352,8 @@ void DrawTextEffects(DrawPixelInfo *dpi)
break;
case ZOOM_LVL_OUT_4X:
+ case ZOOM_LVL_OUT_8X:
+ case ZOOM_LVL_OUT_16X:
break;
default: NOT_REACHED();