mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
Cleanup.
This commit is contained in:
parent
b0e3693195
commit
ad190cb525
3 changed files with 72 additions and 104 deletions
|
@ -1,5 +1,4 @@
|
|||
#ifndef _SIFMODULEADAPTER_H_
|
||||
#define _SIFMODULEADAPTER_H_
|
||||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
#include "SifModule.h"
|
||||
|
@ -25,7 +24,7 @@ public:
|
|||
|
||||
}
|
||||
|
||||
virtual bool Invoke(uint32 method, uint32* args, uint32 argsSize, uint32* ret, uint32 retSize, uint8* ram)
|
||||
virtual bool Invoke(uint32 method, uint32* args, uint32 argsSize, uint32* ret, uint32 retSize, uint8* ram) override
|
||||
{
|
||||
m_handler(method, args, argsSize, ret, retSize, ram);
|
||||
return true;
|
||||
|
@ -34,5 +33,3 @@ public:
|
|||
private:
|
||||
SifCommandHandler m_handler;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue