mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-04 21:50:35 -04:00
More build system changes
This commit is contained in:
parent
3ab4f0caed
commit
aa50ab78ec
3 changed files with 142 additions and 12 deletions
|
@ -25,10 +25,10 @@ Scene * CurrentScene;
|
|||
|
||||
#ifdef _WIN32
|
||||
|
||||
/* TDM GCC bonus feature; saves 66 kB in the binary :) */
|
||||
/* */ void* operator new(unsigned size){return malloc(size);}
|
||||
/* */ void operator delete(void *ptr){free(ptr);}
|
||||
/* */ extern "C" void __cxa_pure_virtual(){}
|
||||
/* MinGW bonus feature; saves 66 kB in the binary :) */
|
||||
/* */ void* __CRTDECL operator new(unsigned size){return malloc(size);}
|
||||
/* */ void __CRTDECL operator delete(void *ptr){free(ptr);}
|
||||
/* */ extern "C" void __CRTDECL __cxa_pure_virtual(){}
|
||||
|
||||
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue