mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
ide: Fixed storing some configuration options (thanks SenderGhost)
This commit is contained in:
parent
ec44d16c8c
commit
922dbb77a0
1 changed files with 3 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ void Sentinel(Stream& s, const char *txt)
|
|||
|
||||
void Ide::Serialize(Stream& s)
|
||||
{
|
||||
int version = 19;
|
||||
int version = 20;
|
||||
Sentinel(s, "before 12341234");
|
||||
s.Magic(0x12341234);
|
||||
Sentinel(s, "after magic");
|
||||
|
|
@ -276,6 +276,8 @@ void Ide::Serialize(Stream& s)
|
|||
s % editor.commentdp;
|
||||
s % bordercolumn;
|
||||
s % bordercolor;
|
||||
if(version >= 20)
|
||||
s % find_pick_sel % find_pick_text % deactivate_save;
|
||||
s % hydra1_threads;
|
||||
if(s.IsLoading())
|
||||
console.SetSlots(hydra1_threads);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue