mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 05:23:43 +00:00 
			
		
		
		
	memory_util: Remove commented out printf statements
This commit is contained in:
		
							parent
							
								
									07bfe0abbb
								
							
						
					
					
						commit
						3972ac40ef
					
				@ -49,9 +49,6 @@ void* AllocateExecutableMemory(size_t size, bool low)
 | 
				
			|||||||
        , -1, 0);
 | 
					        , -1, 0);
 | 
				
			||||||
#endif /* defined(_WIN32) */
 | 
					#endif /* defined(_WIN32) */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // printf("Mapped executable memory at %p (size %ld)\n", ptr,
 | 
					 | 
				
			||||||
    //    (unsigned long)size);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef _WIN32
 | 
					#ifdef _WIN32
 | 
				
			||||||
    if (ptr == nullptr)
 | 
					    if (ptr == nullptr)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@ -69,7 +66,6 @@ void* AllocateExecutableMemory(size_t size, bool low)
 | 
				
			|||||||
        {
 | 
					        {
 | 
				
			||||||
            map_hint += size;
 | 
					            map_hint += size;
 | 
				
			||||||
            map_hint = (char*)round_page(map_hint); /* round up to the next page */
 | 
					            map_hint = (char*)round_page(map_hint); /* round up to the next page */
 | 
				
			||||||
            // printf("Next map will (hopefully) be at %p\n", map_hint);
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
@ -94,9 +90,6 @@ void* AllocateMemoryPages(size_t size)
 | 
				
			|||||||
        ptr = nullptr;
 | 
					        ptr = nullptr;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // printf("Mapped memory at %p (size %ld)\n", ptr,
 | 
					 | 
				
			||||||
    //    (unsigned long)size);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (ptr == nullptr)
 | 
					    if (ptr == nullptr)
 | 
				
			||||||
        LOG_ERROR(Common_Memory, "Failed to allocate raw memory");
 | 
					        LOG_ERROR(Common_Memory, "Failed to allocate raw memory");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -117,9 +110,6 @@ void* AllocateAlignedMemory(size_t size,size_t alignment)
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // printf("Mapped memory at %p (size %ld)\n", ptr,
 | 
					 | 
				
			||||||
    //    (unsigned long)size);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (ptr == nullptr)
 | 
					    if (ptr == nullptr)
 | 
				
			||||||
        LOG_ERROR(Common_Memory, "Failed to allocate aligned memory");
 | 
					        LOG_ERROR(Common_Memory, "Failed to allocate aligned memory");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user