mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Unrelated warning fix
This commit is contained in:
parent
1ef1478cc8
commit
688042c036
2 changed files with 4 additions and 4 deletions
|
@ -138,9 +138,8 @@ void SHAInit(SHA_CTX *shsInfo)
|
|||
|
||||
Note that this corrupts the shsInfo->data area */
|
||||
|
||||
static void SHSTransform( digest, data )
|
||||
UINT4 *digest, *data ;
|
||||
{
|
||||
static void SHSTransform( UINT4 *digest, UINT4 *data )
|
||||
{
|
||||
UINT4 A, B, C, D, E; /* Local vars */
|
||||
UINT4 eData[ 16 ]; /* Expanded data */
|
||||
|
||||
|
|
|
@ -133,8 +133,9 @@ bool System_MakeRequest(SystemRequestType type, int requestId, const std::string
|
|||
return true;
|
||||
}
|
||||
return false;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
void System_InputBoxGetString(const std::string &title, const std::string &defaultValue, std::function<void(bool, const std::string &)> cb) { cb(false, ""); }
|
||||
void System_AskForPermission(SystemPermission permission) {}
|
||||
|
|
Loading…
Add table
Reference in a new issue