summaryrefslogtreecommitdiffstats
path: root/src/common/src/thunk.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/src/thunk.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/common/src/thunk.h b/src/common/src/thunk.h
index 4b64a9b0e..c9e6fd39f 100644
--- a/src/common/src/thunk.h
+++ b/src/common/src/thunk.h
@@ -24,23 +24,23 @@
class ThunkManager : public Gen::XCodeBlock
{
- std::map<void *, const u8 *> thunks;
+ std::map<void *, const u8 *> thunks;
- const u8 *save_regs;
- const u8 *load_regs;
+ const u8 *save_regs;
+ const u8 *load_regs;
public:
- ThunkManager() {
- Init();
- }
- ~ThunkManager() {
- Shutdown();
- }
- void *ProtectFunction(void *function, int num_params);
+ ThunkManager() {
+ Init();
+ }
+ ~ThunkManager() {
+ Shutdown();
+ }
+ void *ProtectFunction(void *function, int num_params);
private:
- void Init();
- void Shutdown();
- void Reset();
+ void Init();
+ void Shutdown();
+ void Reset();
};
#endif // _THUNK_H_