mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
better stub sceNpUtilBandwidthTestGetStatus
This commit is contained in:
parent
66610a28af
commit
46812d46ba
2 changed files with 7 additions and 1 deletions
|
@ -15,7 +15,7 @@ s32 sceNpUtilBandwidthTestInitStart(u32 prio, size_t stack)
|
|||
s32 sceNpUtilBandwidthTestGetStatus()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sceNpUtil);
|
||||
return CELL_OK;
|
||||
return SCE_NP_UTIL_BANDWIDTH_TEST_STATUS_FINISHED;
|
||||
}
|
||||
|
||||
s32 sceNpUtilBandwidthTestShutdown()
|
||||
|
|
|
@ -1 +1,7 @@
|
|||
#pragma once
|
||||
enum
|
||||
{
|
||||
SCE_NP_UTIL_BANDWIDTH_TEST_STATUS_NONE = 0,
|
||||
SCE_NP_UTIL_BANDWIDTH_TEST_STATUS_RUNNING = 1,
|
||||
SCE_NP_UTIL_BANDWIDTH_TEST_STATUS_FINISHED = 2
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue