Browse Source

Fix build issue in debug.cpp

Source/debug.cpp:124:41: error: unable to find numeric literal operator ‘operator""i64’
    *(_QWORD *)plr[myplr]._pMemSpells |= 1i64 << (i - 1);
pull/4/head
mewmew 8 years ago
parent
commit
4a866b32db
  1. 2
      Source/debug.cpp

2
Source/debug.cpp

@ -121,7 +121,7 @@ void __cdecl MaxSpellsCheat()
{
if ( spelldata[i].sBookLvl != -1 )
{
*(_QWORD *)plr[myplr]._pMemSpells |= 1i64 << (i - 1);
*(_QWORD *)plr[myplr]._pMemSpells |= 1 << (i - 1);
plr[myplr]._pSplLvl[i] = 10;
}
}

Loading…
Cancel
Save