mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +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;
|
break;
|
||||||
case CH_CTRLT:
|
case CH_CTRLT:
|
||||||
original_colors = !original_colors;
|
original_colors = !original_colors;
|
||||||
if (original_colors) = GrPaletteSetStd;
|
if (original_colors) PaletteSetStd(FALSE);
|
||||||
else GrPaletteSet(original_palette);
|
else {
|
||||||
|
GrPaletteSet(original_palette);
|
||||||
|
LFBFlush;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case CH_CTRLL:
|
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");
|
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;
|
MenuPop;
|
||||||
SettingsPop;
|
SettingsPop;
|
||||||
|
GrPaletteSet(original_palette);
|
||||||
|
LFBFlush;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// dev server
|
// dev server
|
||||||
// Telnet("localhost", 8888);
|
// Telnet("localhost", 8888);
|
||||||
Telnet;
|
Telnet;
|
Loading…
Reference in a new issue