| 583 | } |
| 584 | |
| 585 | void iSGMakeTimeStamp(char* str) |
| 586 | { |
| 587 | OSCalendarTime calendar_time = { 0 }; |
| 588 | OSTime time = OSGetTime(); |
| 589 | OSTicksToCalendarTime(time, &calendar_time); |
| 590 | sprintf(str, "%02d/%02d/%04d %02d:%02d:%02d", calendar_time.mon + 1, calendar_time.mday, |
| 591 | calendar_time.year, calendar_time.hour, calendar_time.min, calendar_time.sec); |
| 592 | } |
| 593 | |
| 594 | S32 iSGSelectGameDir(st_ISGSESSION* isgdata, const char* dname) |
| 595 | { |
no test coverage detected