DWORD_ fix, not sure if correct

develop
Warmist 2011-08-03 18:15:58 +03:00
parent ef4a459214
commit e7174e6736
1 changed files with 2 additions and 2 deletions

@ -29,10 +29,10 @@ void Hexsearch::ReparseArgs()
i++; i++;
for(int j=0;j<4;j++) for(int j=0;j<4;j++)
{ {
args_.push_back(targ[i+4-j]); args_.push_back((targ[i]&(0xff<<i))>>i);//TODO is this correct???
} }
i+=4; i++;
} }
else if (targ[i]==ANYDWORD) else if (targ[i]==ANYDWORD)
{ {