mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef MAKE_CONST_NONCONST_H
 | 
						|
#define MAKE_CONST_NONCONST_H
 | 
						|
 | 
						|
#ifdef TARGET_N64
 | 
						|
// IDO sometimes puts const variables in .rodata and sometimes in .data, which breaks ordering.
 | 
						|
// This makes sure all variables are put into the same section (.data). We need to do this for
 | 
						|
// both IDO and gcc for TARGET_N64.
 | 
						|
#define const
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |