(svn r18546) -Codechange: make making the screenshot not asynchronious; just do it at the moment it's requested.

This commit is contained in:
rubidium
2009-12-19 19:21:37 +00:00
parent 29d6491605
commit a6146f5f51
6 changed files with 38 additions and 45 deletions

View File

@@ -756,12 +756,12 @@ static void ToolbarHelpClick(Window *w)
static void MenuClickSmallScreenshot()
{
RequestScreenshot(SC_VIEWPORT, NULL);
MakeScreenshot(SC_VIEWPORT, NULL);
}
static void MenuClickWorldScreenshot()
{
RequestScreenshot(SC_WORLD, NULL);
MakeScreenshot(SC_WORLD, NULL);
}
static void MenuClickHelp(int index)