Definition at line 53 of file mainTalk.cpp. References gHeight, gLarge, gSmall, and gWidth. Referenced by mainTalk(). 00054 { 00055 if (gSmall) 00056 { 00057 gWidth = 4; 00058 gHeight = 3; 00059 } 00060 else 00061 { 00062 if (gLarge) 00063 { 00064 gWidth = 13; 00065 gHeight = 9; 00066 } 00067 else 00068 { 00069 gWidth = 9; 00070 gHeight = 7; 00071 } 00072 } 00073 }
|