summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2014-04-27 15:13:46 +0000
committerfrosch <frosch@openttd.org>2014-04-27 15:13:46 +0000
commitebd2d3ccef7babead511b133d78654ea2ca38343 (patch)
tree3ddb28b9e1aecc0f048679e0d55f2a25349f29cd /src/strings.cpp
parent08660e6ea6c2741e92dd92095be6b233910f4eb7 (diff)
downloadopenttd-ebd2d3ccef7babead511b133d78654ea2ca38343.tar.xz
(svn r26525) -Remove: Screenshot format setting from GUI.
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index e69c6cf1c..fb74a3f23 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -13,7 +13,6 @@
#include "currency.h"
#include "station_base.h"
#include "town.h"
-#include "screenshot.h"
#include "waypoint_base.h"
#include "depot_base.h"
#include "industry.h"
@@ -1682,12 +1681,6 @@ static char *GetSpecialNameString(char *buff, int ind, StringParameters *args, c
return buff;
}
- /* screenshot format name? */
- if (IsInsideMM(ind, (SPECSTR_SCREENSHOT_START - 0x70E4), (SPECSTR_SCREENSHOT_END - 0x70E4) + 1)) {
- int i = ind - (SPECSTR_SCREENSHOT_START - 0x70E4);
- return strecpy(buff, GetScreenshotFormatDesc(i), last);
- }
-
NOT_REACHED();
}