Correct BMP creation on Linux (PR #1014)

Enable BMP Header packing on all compilers.
Add virtual function to FrameBase to select where to save screenshots.
This commit is contained in:
Andrea
2022-01-03 14:41:03 +00:00
committed by GitHub
parent a243efc74b
commit d63e406573
6 changed files with 27 additions and 17 deletions
+6
View File
@@ -620,3 +620,9 @@ BYTE* Win32Frame::GetResource(WORD id, LPCSTR lpType, DWORD dwExpectedSize)
return pResource;
}
std::string Win32Frame::Video_GetScreenShotFolder()
{
// save in current folder
return "";
}