| 195 | |
| 196 | //******************************************************************************** |
| 197 | void SetMainWindowText() |
| 198 | { |
| 199 | string str = FCEU_NAME_AND_VERSION; |
| 200 | if (newppu) |
| 201 | str.append(" (New PPU)"); |
| 202 | if (GameInfo) |
| 203 | { |
| 204 | //Add the filename to the window caption |
| 205 | extern char FileBase[]; |
| 206 | str.append(": "); |
| 207 | str.append(FileBase); |
| 208 | if (FCEUMOV_IsLoaded()) |
| 209 | { |
| 210 | str.append(" Playing: "); |
| 211 | str.append(StripPath(FCEUI_GetMovieName())); |
| 212 | } |
| 213 | } |
| 214 | SetWindowText(hAppWnd, str.c_str()); |
| 215 | } |
| 216 | |
| 217 | bool HasRecentFiles() |
| 218 | { |
no test coverage detected