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
commit6954045bb4872b15677562e73d0e028c640ac8a7 (patch)
tree69918d97ffcd2399c422767b0ca61c1c2c898aa4 /src/texteff.cpp
parent1ce633b894d0c56c42b0ad696378f1236bcfddb1 (diff)
downloadopenttd-6954045bb4872b15677562e73d0e028c640ac8a7.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();