From 93480b10ef443dbc616a9240fe8f7456315c1940 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 1 Jan 2018 15:40:35 -0500 Subject: core/video_core: Fix a bunch of u64 -> u32 warnings. --- src/core/memory_setup.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/memory_setup.h') diff --git a/src/core/memory_setup.h b/src/core/memory_setup.h index c58baa50b..ff4dcc936 100644 --- a/src/core/memory_setup.h +++ b/src/core/memory_setup.h @@ -17,7 +17,7 @@ namespace Memory { * @param size The amount of bytes to map. Must be page-aligned. * @param target Buffer with the memory backing the mapping. Must be of length at least `size`. */ -void MapMemoryRegion(PageTable& page_table, VAddr base, u32 size, u8* target); +void MapMemoryRegion(PageTable& page_table, VAddr base, u64 size, u8* target); /** * Maps a region of the emulated process address space as a IO region. @@ -26,7 +26,7 @@ void MapMemoryRegion(PageTable& page_table, VAddr base, u32 size, u8* target); * @param size The amount of bytes to map. Must be page-aligned. * @param mmio_handler The handler that backs the mapping. */ -void MapIoRegion(PageTable& page_table, VAddr base, u32 size, MMIORegionPointer mmio_handler); +void MapIoRegion(PageTable& page_table, VAddr base, u64 size, MMIORegionPointer mmio_handler); -void UnmapRegion(PageTable& page_table, VAddr base, u32 size); +void UnmapRegion(PageTable& page_table, VAddr base, u64 size); } -- cgit v1.2.3