|
|
g_pGraphics->DrawText((char*)strValue.c_str(),0xffffffff,480,25);
cfgPlayer->GetInteger("window","time",TimeTemp); //分
g_pGraphics->DrawText((char *)TimeTemp,0xffffff00,550,25);
cfgPlayer->GetInteger("window","time_second",TimeSecond);
g_pGraphics->DrawText((char *)TimeSecond,0xff00ffff,595,25);
///
SumTime=TimeTemp*60+TimeSecond;
ConfigStat->WriteInteger("stat","time",SumTime);
ConfigStat->Write("Window.txt");
////
TimeTemp,TimeSecond,SumTime.整型 |
|