| 1552 | } |
| 1553 | |
| 1554 | void SetupCheatFont(HWND hwnd) |
| 1555 | { |
| 1556 | if (!hCheat && !hGGConv) |
| 1557 | { |
| 1558 | hFont = (HFONT)SendMessage(hwnd, WM_GETFONT, 0, 0); |
| 1559 | LOGFONT lf; |
| 1560 | GetObject(hFont, sizeof(LOGFONT), &lf); |
| 1561 | strcpy(lf.lfFaceName, "Courier New"); |
| 1562 | hNewFont = CreateFontIndirect(&lf); |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | void DeleteCheatFont() |
| 1567 | { |
no outgoing calls
no test coverage detected