mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 15:10:28 +00:00
Palette Fix
This commit is contained in:
parent
d0209a8dac
commit
d47ce0b822
1 changed files with 7 additions and 4 deletions
|
@ -827,8 +827,11 @@ init_connection:
|
|||
break;
|
||||
case CH_CTRLT:
|
||||
original_colors = !original_colors;
|
||||
if (original_colors) = GrPaletteSetStd;
|
||||
else GrPaletteSet(original_palette);
|
||||
if (original_colors) PaletteSetStd(FALSE);
|
||||
else {
|
||||
GrPaletteSet(original_palette);
|
||||
LFBFlush;
|
||||
}
|
||||
break;
|
||||
case CH_CTRLL:
|
||||
PopUpOk("\n\n Not all BBS will work perfectly (yet). \n\n You can load ANSi artwork with Ctrl+O","\n\n\n\t\tMade by y4my4m\n\n");
|
||||
|
@ -855,10 +858,10 @@ init_connection:
|
|||
|
||||
MenuPop;
|
||||
SettingsPop;
|
||||
|
||||
GrPaletteSet(original_palette);
|
||||
LFBFlush;
|
||||
}
|
||||
|
||||
|
||||
// dev server
|
||||
// Telnet("localhost", 8888);
|
||||
Telnet;
|
Loading…
Reference in a new issue