shadPS4/src/emuTimer.cpp

10 lines
169 B
C++
Raw Normal View History

2023-10-30 07:48:52 +01:00
#include "Lib/Timer.h"
namespace Emulator::emuTimer {
static Lib::Timer timer;
void start() { timer.Start(); }
double getTimeMsec() { return timer.GetTimeMsec(); }
}