Home away from home
Joined: 2007/9/11 12:31 Last Login
: 11/19 7:43
From Russia
Group:
Registered Users
|
@salas00 Btw, should i add some other values to when use those macroses ? I mean it want 2 values, so once i just do:
while(SAFE_LEFT_SHIFT(dh<<hshift) < sh) hshift++; , it didn't compiles, but if i do something like while(SAFE_LEFT_SHIFT(dh<<hshift,0) < sh) hshift++; then it compiles.
Or it just matter removing << and replace with , , like: while(SAFE_LEFT_SHIFT(dh,hshift) < sh) hshift++; ?
edit: with just "while (SAFE_LEFT_SHIFT(dw,wshift) < sw) wshift++;", same stuck.
|