mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-31 09:20:59 +00:00
- another backend update from merging several GZDoom PRs.
This commit is contained in:
parent
9764c9de0b
commit
02afa90202
10 changed files with 24 additions and 17 deletions
|
@ -81,7 +81,7 @@ static const FLOP FxFlops[] =
|
|||
{ NAME_Round, FLOP_ROUND, [](double v) { return round(v); } },
|
||||
};
|
||||
|
||||
static bool AreCompatiblePointerTypes(PType* dest, PType* source, bool forcompare = false);
|
||||
bool AreCompatiblePointerTypes(PType* dest, PType* source, bool forcompare = false);
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
|
@ -271,7 +271,7 @@ PFunction *FindBuiltinFunction(FName funcname)
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
static bool AreCompatiblePointerTypes(PType *dest, PType *source, bool forcompare)
|
||||
bool AreCompatiblePointerTypes(PType *dest, PType *source, bool forcompare)
|
||||
{
|
||||
if (dest->isPointer() && source->isPointer())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue