2.9.0.3 ===========================================================================
| 2571 | // 2.9.0.3 |
| 2572 | //=========================================================================== |
| 2573 | void _DrawSoftSwitchHighlight( RECT & temp, bool bSet, const char *sOn, const char *sOff, int bg = BG_INFO ) |
| 2574 | { |
| 2575 | // DebuggerSetColorBG( DebuggerGetColor( bg ) ); // BG_INFO |
| 2576 | |
| 2577 | ColorizeFlags( bSet, bg ); |
| 2578 | PrintTextCursorX( sOn, temp ); |
| 2579 | |
| 2580 | DebuggerSetColorBG( DebuggerGetColor( bg ) ); // BG_INFO |
| 2581 | DebuggerSetColorFG( DebuggerGetColor( FG_DISASM_OPERATOR ) ); |
| 2582 | PrintTextCursorX( "/", temp ); |
| 2583 | |
| 2584 | ColorizeFlags( !bSet, bg ); |
| 2585 | PrintTextCursorX( sOff, temp ); |
| 2586 | } |
| 2587 | |
| 2588 | |
| 2589 | // 2.9.0.8 |
no test coverage detected