PSP: Whitespace fix (and rewrap overlong line for readability)

svn-id: r50129
This commit is contained in:
Max Horn 2010-06-21 21:37:00 +00:00
parent bbad3f333a
commit 6c854f30da

View file

@ -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();