diff options
author | rubidium <rubidium@openttd.org> | 2011-12-31 14:56:39 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-12-31 14:56:39 +0000 |
commit | 8b223f0274f67ead6089f4c34224b9b99fb460e1 (patch) | |
tree | 19d4c323d8f62f3d144fa77fa35fa5f912fb4884 /src/screenshot.h | |
parent | 20931c5af8cef81b8cfa5ab1c31b84eddc5d749f (diff) | |
download | openttd-8b223f0274f67ead6089f4c34224b9b99fb460e1.tar.xz |
(svn r23695) -Fix/Feature [FS#4916]: make a distinction between fully zoomed in and default zoomed in screenshots
Diffstat (limited to 'src/screenshot.h')
-rw-r--r-- | src/screenshot.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/screenshot.h b/src/screenshot.h index 64c588178..474b93f89 100644 --- a/src/screenshot.h +++ b/src/screenshot.h @@ -20,11 +20,12 @@ const char *GetCurrentScreenshotExtension(); /** Type of requested screenshot */ enum ScreenshotType { - SC_VIEWPORT, ///< Screenshot of viewport. - SC_RAW, ///< Raw screenshot from blitter buffer. - SC_ZOOMEDIN, ///< Zoomed in screenshot of the visible area. - SC_WORLD, ///< World screenshot. - SC_HEIGHTMAP, ///< Heightmap of the world. + SC_VIEWPORT, ///< Screenshot of viewport. + SC_RAW, ///< Raw screenshot from blitter buffer. + SC_ZOOMEDIN, ///< Fully zoomed in screenshot of the visible area. + SC_DEFAULTZOOM, ///< Zoomed to default zoom level screenshot of the visible area. + SC_WORLD, ///< World screenshot. + SC_HEIGHTMAP, ///< Heightmap of the world. }; bool MakeHeightmapScreenshot(const char *filename); |