mirror of
				https://github.com/Ryujinx/SDL.git
				synced 2025-11-04 15:34:58 +00:00 
			
		
		
		
	Fixed bug 2084 - SDL_log xxx on Android outputs to Logcat with incorrect priority.
Pallav Nawani This effects all SDL_Logxxx functions. On android, the debug output has a priority that is 1 higher than intended, ie, if you try SDL_LogInfo, the log has the priority of Warn instead.
This commit is contained in:
		
							parent
							
								
									b63d11ce9c
								
							
						
					
					
						commit
						48aca0b2df
					
				| 
						 | 
				
			
			@ -84,6 +84,7 @@ static const char *SDL_category_prefixes[SDL_LOG_CATEGORY_RESERVED1] = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
static int SDL_android_priority[SDL_NUM_LOG_PRIORITIES] = {
 | 
			
		||||
    ANDROID_LOG_UNKNOWN,
 | 
			
		||||
    ANDROID_LOG_VERBOSE,
 | 
			
		||||
    ANDROID_LOG_DEBUG,
 | 
			
		||||
    ANDROID_LOG_INFO,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue