From 1b234fd32b019841b1c3b46deb589feff944985c Mon Sep 17 00:00:00 2001 From: Damian Korczowski Date: Sun, 21 Feb 2021 14:45:31 +0100 Subject: [PATCH] Update AllocatePages comment to point to the correct page size API --- Source/Engine/Platform/Base/PlatformBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Platform/Base/PlatformBase.h b/Source/Engine/Platform/Base/PlatformBase.h index d640eb252..e97ce2b34 100644 --- a/Source/Engine/Platform/Base/PlatformBase.h +++ b/Source/Engine/Platform/Base/PlatformBase.h @@ -320,7 +320,7 @@ public: /// Allocates pages memory block. /// /// The number of pages to allocate. - /// The size of single page. Use GetDefaultPageSize() or provide compatible, custom size. + /// The size of single page. Use Platform::GetCPUInfo().PageSize or provide compatible, custom size. /// The pointer to the allocated pages in memory. static void* AllocatePages(uint64 numPages, uint64 pageSize) = delete;