mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-02 06:06:59 -06:00
ide: Fixed lost cfg issue
git-svn-id: svn://ultimatepp.org/upp/trunk@4666 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
dd3a28d1dd
commit
bc0318679a
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ void Splitter::Serialize(Stream& s) {
|
|||
}
|
||||
if(s.IsLoading()) {
|
||||
for(int i = 0; i < pos.GetCount(); i++)
|
||||
if(pos[i] < 0 || pos[i] >= 10000) {
|
||||
if(pos[i] < 0 || pos[i] > 10000) {
|
||||
pos.Clear();
|
||||
s.LoadError();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue