| 120 | } |
| 121 | |
| 122 | std::string FrameBase::Util_MakeScreenShotFileName() const |
| 123 | { |
| 124 | const std::string sPrefixScreenShotFileName = "AppleWin_ScreenShot"; |
| 125 | const std::string pPrefixFileName = !g_pLastDiskImageName.empty() ? g_pLastDiskImageName : sPrefixScreenShotFileName; |
| 126 | const std::string folder = Video_GetScreenShotFolder(); |
| 127 | return StrFormat("%s%s_%09d.bmp", folder.c_str(), pPrefixFileName.c_str(), g_nLastScreenShot); |
| 128 | } |
| 129 | |
| 130 | // Returns TRUE if file exists, else FALSE |
| 131 | bool FrameBase::Util_TestScreenShotFileName(const char* pFileName) |
nothing calls this directly
no test coverage detected