Reporting: Avoid accessing ticks before start.
This commit is contained in:
parent
1469a32a9d
commit
c33ff58980
1 changed files with 2 additions and 1 deletions
|
@ -434,7 +434,8 @@ namespace Reporting
|
|||
void AddGameplayInfo(UrlEncoder &postdata)
|
||||
{
|
||||
// Just to get an idea of how long they played.
|
||||
postdata.Add("ticks", (const uint64_t)CoreTiming::GetTicks());
|
||||
if (PSP_IsInited())
|
||||
postdata.Add("ticks", (const uint64_t)CoreTiming::GetTicks());
|
||||
|
||||
float vps, fps;
|
||||
__DisplayGetAveragedFPS(&vps, &fps);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue