mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-03 15:42:32 +00:00
logging tweak
This commit is contained in:
parent
ad4b2ea009
commit
806fadb1c0
@ -148,7 +148,11 @@ u32 sceSasSetVoice(u32 core, int voiceNum, u32 vagAddr, int size, int loop) {
|
||||
}
|
||||
|
||||
if (size <= 0 || (size & 0xF) != 0) {
|
||||
WARN_LOG(HLE, "%s: invalid size %d", __FUNCTION__, size);
|
||||
if (size == 0) {
|
||||
DEBUG_LOG(HLE, "%s: invalid size %d", __FUNCTION__, size);
|
||||
} else {
|
||||
WARN_LOG(HLE, "%s: invalid size %d", __FUNCTION__, size);
|
||||
}
|
||||
return ERROR_SAS_INVALID_SIZE;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user