mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-07 00:05:14 +01:00
13 lines
219 B
C++
13 lines
219 B
C++
#pragma once
|
|
|
|
struct SceNpUtilInternal
|
|
{
|
|
bool m_bSceNpUtilBandwidthTestInitialized;
|
|
|
|
SceNpUtilInternal()
|
|
: m_bSceNpUtilBandwidthTestInitialized(false)
|
|
{
|
|
}
|
|
};
|
|
|
|
extern std::unique_ptr<SceNpUtilInternal> g_sceNpUtil; |