2.9.0.8 ===========================================================================
| 2589 | // 2.9.0.8 |
| 2590 | //=========================================================================== |
| 2591 | void _DrawSoftSwitchAddress( RECT & rect, int nAddress, int bg_default = BG_INFO ) |
| 2592 | { |
| 2593 | DebuggerSetColorBG( DebuggerGetColor( bg_default )); |
| 2594 | DebuggerSetColorFG( DebuggerGetColor( FG_DISASM_TARGET )); |
| 2595 | PrintTextCursorX( ByteToHexStr( nAddress & 0xFF ).c_str(), rect ); |
| 2596 | |
| 2597 | DebuggerSetColorFG( DebuggerGetColor( FG_DISASM_OPERATOR ) ); |
| 2598 | PrintTextCursorX( ":", rect ); |
| 2599 | } |
| 2600 | |
| 2601 | // 2.7.0.7 Cleaned up display of soft-switches to show address. |
| 2602 | //=========================================================================== |
no test coverage detected