- Fixed build with MinGW-w64 (TDM-GCC 5.1). Note that the resulting binary will crash under -O3 until the alignment violation is taken care of in FRemapTable::Alloc.
- It appears that CMake added native support for building rc files with MinGW at some point so removed manual rc compiling code.
This commit is contained in:
parent
c28bcca3f3
commit
789315bb4a
9 changed files with 26 additions and 72 deletions
|
|
@ -97,5 +97,5 @@ bool FModule::Open(const char* lib)
|
|||
|
||||
void *FModule::GetSym(const char* name)
|
||||
{
|
||||
return GetProcAddress((HMODULE)handle, name);
|
||||
return (void *)GetProcAddress((HMODULE)handle, name);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue