Updates the horizontal cursor ===========================================================================
| 886 | // Updates the horizontal cursor |
| 887 | //=========================================================================== |
| 888 | int PrintTextCursorX ( const char * pText, RECT & rRect ) |
| 889 | { |
| 890 | int nChars = 0; |
| 891 | if (pText) |
| 892 | { |
| 893 | nChars = PrintText( pText, rRect ); |
| 894 | int nFontWidth = g_aFontConfig[ FONT_DISASM_DEFAULT ]._nFontWidthAvg; |
| 895 | rRect.left += (nFontWidth * nChars); |
| 896 | } |
| 897 | return nChars; |
| 898 | } |
| 899 | |
| 900 | //=========================================================================== |
| 901 | int PrintTextCursorY ( const char * pText, RECT & rRect ) |
no test coverage detected