| 247 | int savewidth, saveheight; |
| 248 | |
| 249 | void WriteSavePic(FileWriter* file, int width, int height) |
| 250 | { |
| 251 | writingsavepic = true; |
| 252 | savefile = file; |
| 253 | savewidth = width; |
| 254 | saveheight = height; |
| 255 | /*bool didit =*/ gi->GenerateSavePic(); |
| 256 | writingsavepic = false; |
| 257 | } |
| 258 | |
| 259 | void RenderToSavePic(FRenderViewpoint& vp, FileWriter* file, int width, int height) |
| 260 | { |
no test coverage detected