size optimization
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5111 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
fa5602f290
commit
f44be03eeb
2 changed files with 27 additions and 16 deletions
|
@ -4540,7 +4540,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
|
|||
if (ent.offsets[1] < 0) PRINTHELP();
|
||||
switch (ent.offsets[1]) {
|
||||
case 0:
|
||||
ent.offsets[1]=8;
|
||||
ent.offsets[2]=1;
|
||||
break;
|
||||
case 1:
|
||||
case 2:
|
||||
|
@ -5794,8 +5794,8 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
|
|||
// SetDetailsPrint lastused
|
||||
ent.which=EW_UPDATETEXT;
|
||||
ent.offsets[0]=0;
|
||||
ent.offsets[1]=8; // lastused
|
||||
ent.offsets[2]=0;
|
||||
ent.offsets[1]=0;
|
||||
ent.offsets[2]=1; // lastused
|
||||
ret=add_entry(&ent);
|
||||
if (ret != PS_OK) {
|
||||
return ret;
|
||||
|
@ -5866,7 +5866,8 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
|
|||
// SetDetailsPrint lastused
|
||||
ent.which=EW_UPDATETEXT;
|
||||
ent.offsets[0]=0;
|
||||
ent.offsets[1]=8; // lastused
|
||||
ent.offsets[1]=0;
|
||||
ent.offsets[2]=1; // lastused
|
||||
ret=add_entry(&ent);
|
||||
if (ret != PS_OK) return ret;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue