Don't cache time in a variable.

A little weirdness in the code that has stuck around for a long, long
time. It's really not necessary and mostly just confusing.
This commit is contained in:
Henrik Rydgård 2020-09-24 23:52:03 +02:00
parent c4c7897a26
commit 054acf768c
27 changed files with 68 additions and 125 deletions

View file

@ -91,7 +91,7 @@ int PSPNetconfDialog::Init(u32 paramAddr) {
connResult = -1;
scanInfosAddr = 0;
scanStep = 0;
startTime = (u64)(real_time_now() * 1000000.0);
startTime = (u64)(time_now_d() * 1000000.0);
StartFade(true);
return 0;
@ -252,7 +252,7 @@ int PSPNetconfDialog::Update(int animSpeed) {
UpdateButtons();
auto di = GetI18NCategory("Dialog");
auto err = GetI18NCategory("Error");
u64 now = (u64)(real_time_now() * 1000000.0);
u64 now = (u64)(time_now_d() * 1000000.0);
// It seems JPCSP doesn't check for NETCONF_STATUS_APNET
if (request.netAction == NETCONF_CONNECT_APNET || request.netAction == NETCONF_STATUS_APNET || request.netAction == NETCONF_CONNECT_APNET_LAST) {