Skip to content

Commit

Permalink
Reduce overhead of calling primitives implemented in C++
Browse files Browse the repository at this point in the history
Remove the need for thunks to call most primitives implemented in C++.
Start to reimplement the float primitives in C++ instead of asm.
  • Loading branch information
blairmcg committed Jan 12, 2017
1 parent ace1ac0 commit f8ae38e
Show file tree
Hide file tree
Showing 53 changed files with 2,504 additions and 2,552 deletions.
4 changes: 2 additions & 2 deletions ConsoleStub/wincons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ int __stdcall DolphinMessage(UINT flags, const char* msg)
return 0;
}

BOOL __fastcall Interpreter::primitiveHookWindowCreate()
Oop* __fastcall Interpreter::primitiveHookWindowCreate()
{
return FALSE;
return NULL;
}

#pragma code_seg(INIT_SEG)
Expand Down
Loading

0 comments on commit f8ae38e

Please sign in to comment.