12 lines
210 B
Plaintext
12 lines
210 B
Plaintext
|
//allow alignment shift from setup helper
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
if(!(GetLocalInt(GetModule(), "iAllowAlignmentShift") == 1))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|