diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 21d01a781..9bcee0d8f 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,5 @@ Changes towards version 0.4: +- Fixed blue comms screen problem (bug #363), from Joel Holveck & Nic - Automatically adding an icon for Darwin builds, from Nic - Fixed Roster-F10-Quit bug (#591), - Michael - Restructured starcon2.c, with better checks for argument parsing, diff --git a/sc2/src/sc2code/comm.c b/sc2/src/sc2code/comm.c index 3bfdbdefa..d1a507280 100644 --- a/sc2/src/sc2code/comm.c +++ b/sc2/src/sc2code/comm.c @@ -198,7 +198,7 @@ add_text (int status, PTEXT pTextIn) // saves background to extra screen TFB_DrawScreen_Copy (&r, TFB_SCREEN_MAIN, TFB_SCREEN_EXTRA); // fills screen with transparent color - TFB_DrawScreen_Rect (&r, 0, 0, 255, TFB_SCREEN_MAIN); + TFB_DrawScreen_Rect (&r, 0, 0, 128, TFB_SCREEN_MAIN); last_subtitle = pTextIn->pStr; } @@ -527,7 +527,7 @@ init_communication (void) canvas = TFB_DrawCanvas_New_TrueColor (SIS_SCREEN_WIDTH, SIS_SCREEN_HEIGHT - SLIDER_Y - SLIDER_HEIGHT + 2, FALSE); subtitle_cache = TFB_DrawImage_New (canvas); - TFB_DrawCanvas_SetTransparentColor (subtitle_cache->NormalImg, 0, 0, 255, TRUE); + TFB_DrawCanvas_SetTransparentColor (subtitle_cache->NormalImg, 0, 0, 128, TRUE); } void