11 lines
133 B
Plaintext
11 lines
133 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (GetMaster() == GetPCSpeaker())
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|