Add an OSD message when taking screenshots in D3D9/D3D11

Fixes issue 6486.
This commit is contained in:
Pierre Bourdon
2013-08-24 01:41:17 +02:00
parent 6df36ec687
commit 367d6dfd65
4 changed files with 19 additions and 1 deletions

View File

@ -742,6 +742,7 @@ bool Renderer::SaveScreenshot(const std::string &filename, const TargetRectangle
PanicAlert("Error saving screen.");
return false;
}
OSD::AddMessage(StringFromFormat("Saved %i x %i %s", dst_rect.GetWidth(), dst_rect.GetHeight(), filename.c_str()));
return true;
}