| 2859 | } |
| 2860 | |
| 2861 | void _CmdColorGet ( const int iScheme, const int iColor ) |
| 2862 | { |
| 2863 | if (iColor < NUM_DEBUG_COLORS) |
| 2864 | { |
| 2865 | // COLORREF nColor = g_aColors[ iScheme ][ iColor ]; |
| 2866 | DebugColors_e eColor = static_cast<DebugColors_e>( iColor ); |
| 2867 | COLORREF nColor = DebuggerGetColor( eColor ); |
| 2868 | _ColorPrint( iColor, nColor ); |
| 2869 | } |
| 2870 | else |
| 2871 | { |
| 2872 | std::string sText = StrFormat( "Color: %d\nOut of range!", iColor ); |
| 2873 | GetFrame().FrameMessageBox(sText.c_str(), "ERROR", MB_OK); |
| 2874 | } |
| 2875 | } |
| 2876 | |
| 2877 | //=========================================================================== |
| 2878 | Update_t CmdConfigColorMono (int nArgs) |
no test coverage detected