Wrong API doc

This commit is contained in:
Alex 2023-02-16 02:29:19 +02:00
parent 778f77a64b
commit afacc0e8de
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -534,12 +534,12 @@ namespace Memory
}; };
/** /**
* @brief Check if page is present * @brief Check if page has the specified flag.
* *
* @param VirtualAddress Virtual address of the page * @param VirtualAddress Virtual address of the page
* @param Flag Flag to check * @param Flag Flag to check
* @return true if page is present * @return true if page has the specified flag.
* @return false if page is not present * @return false if page is has the specified flag.
*/ */
bool Check(void *VirtualAddress, PTFlag Flag = PTFlag::P); bool Check(void *VirtualAddress, PTFlag Flag = PTFlag::P);