mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-28 19:00:23 +00:00
Obviously no reason for this to be virtual.
This commit is contained in:
parent
8ab67b1674
commit
f53426db9d
@ -107,6 +107,7 @@ protected:
|
||||
bool dumpThisFrame_;
|
||||
bool interruptsEnabled_;
|
||||
|
||||
private:
|
||||
// For CPU/GPU sync.
|
||||
#ifdef ANDROID
|
||||
std::atomic<u64> curTickEst_;
|
||||
@ -115,7 +116,7 @@ protected:
|
||||
recursive_mutex curTickEstLock_;
|
||||
#endif
|
||||
|
||||
virtual void UpdateTickEstimate(u64 value) {
|
||||
inline void UpdateTickEstimate(u64 value) {
|
||||
#if defined(_M_X64) || defined(ANDROID)
|
||||
curTickEst_ = value;
|
||||
#elif defined(_M_SSE)
|
||||
|
Loading…
Reference in New Issue
Block a user