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/7/head
			
			
		
							parent
							
								
									f5f76f8b8a
								
							
						
					
					
						commit
						4a866b32db
					
				| 
						 | 
				
			
			@ -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…
	
		Reference in New Issue