Changeset 2626 in vbox for trunk/src/VBox
- Timestamp:
- May 14, 2007 2:12:13 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevRTC.cpp
r2613 r2626 134 134 /** Pointer to the device instance - GC Ptr. */ 135 135 PPDMDEVINSGC pDevInsGC; 136 /** Use U CTor local time initially. */137 bool fU CT;136 /** Use UTC or local time initially. */ 137 bool fUTC; 138 138 /** The RTC registration structure. */ 139 139 PDMRTCREG RtcReg; … … 701 701 */ 702 702 RTTIMESPEC Now; 703 PDMDevHlpU CTNow(pDevIns, &Now);703 PDMDevHlpUTCNow(pDevIns, &Now); 704 704 RTTIME Time; 705 if (pData->fU CT)705 if (pData->fUTC) 706 706 RTTimeExplode(&Time, &Now); 707 707 else
Note:
See TracChangeset
for help on using the changeset viewer.