| 1321 | } |
| 1322 | |
| 1323 | void CLightingDialog::OnBlurLightmaps() { |
| 1324 | |
| 1325 | if ((MessageBox("Are you sure you wish to blur all lightmaps? This operation cannot be undone...", "Question", |
| 1326 | MB_YESNO)) == IDYES) { |
| 1327 | BlurLightmapInfos(LMI_ROOM); |
| 1328 | BlurLightmapInfos(LMI_ROOM_OBJECT); |
| 1329 | BlurLightmapInfos(LMI_EXTERNAL_ROOM); |
| 1330 | BlurLightmapInfos(LMI_TERRAIN_OBJECT); |
| 1331 | |
| 1332 | OutrageMessageBox("Blurring complete."); |
| 1333 | } |
| 1334 | } |
| 1335 | |
| 1336 | void CLightingDialog::OnKillfocusIgnoreLimitEdit() { |
| 1337 | CEdit *ebox; |
nothing calls this directly
no test coverage detected