PSP: Whitespace fix (and rewrap overlong line for readability)
svn-id: r50129
This commit is contained in:
parent
bbad3f333a
commit
6c854f30da
1 changed files with 7 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
#include "common/singleton.h"
|
#include "common/singleton.h"
|
||||||
|
|
||||||
class PspRtc : public Common::Singleton<PspRtc>{
|
class PspRtc : public Common::Singleton<PspRtc> {
|
||||||
private:
|
private:
|
||||||
uint32 _startMillis;
|
uint32 _startMillis;
|
||||||
uint32 _startMicros;
|
uint32 _startMicros;
|
||||||
|
@ -36,7 +36,12 @@ private:
|
||||||
uint32 _milliOffset; // to prevent looping around of millis
|
uint32 _milliOffset; // to prevent looping around of millis
|
||||||
bool _looped; // make sure we only loop once - for threading
|
bool _looped; // make sure we only loop once - for threading
|
||||||
public:
|
public:
|
||||||
PspRtc() : _startMillis(0), _startMicros(0), _lastMillis(0), _milliOffset(0), _looped(false) { init(); }
|
PspRtc()
|
||||||
|
: _startMillis(0), _startMicros(0),
|
||||||
|
_lastMillis(0), _milliOffset(0),
|
||||||
|
_looped(false) {
|
||||||
|
init();
|
||||||
|
}
|
||||||
void init();
|
void init();
|
||||||
uint32 getMillis();
|
uint32 getMillis();
|
||||||
uint32 getMicros();
|
uint32 getMicros();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue