diff options
author | Yang Gang <yanggang@byosoft.com.cn> | 2025-07-02 14:24:47 +0800 |
---|---|---|
committer | Liming Gao <gaoliming@byosoft.com.cn> | 2025-09-02 10:55:44 +0800 |
commit | 77293f47116764abc7734bcef7dba69a9b83b696 (patch) | |
tree | c4888594746ca89de1b98cef27a86919479d72d2 | |
parent | fa92e9bd05816aace0f087d58413d69ddf540e2d (diff) | |
download | edk2-77293f47116764abc7734bcef7dba69a9b83b696.zip edk2-77293f47116764abc7734bcef7dba69a9b83b696.tar.gz edk2-77293f47116764abc7734bcef7dba69a9b83b696.tar.bz2 |
MdePkg: Correct comments for ResolutionY and ResolutionZ in SimplePointer.h
Signed-off-by: Yang Gang <yanggang@byosoft.com.cn>
-rw-r--r-- | MdePkg/Include/Protocol/SimplePointer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/SimplePointer.h b/MdePkg/Include/Protocol/SimplePointer.h index f8d45a6..313119f 100644 --- a/MdePkg/Include/Protocol/SimplePointer.h +++ b/MdePkg/Include/Protocol/SimplePointer.h @@ -54,12 +54,12 @@ typedef struct { UINT64 ResolutionX;
///
/// The resolution of the pointer device on the y-axis in counts/mm.
- /// If 0, then the pointer device does not support an x-axis.
+ /// If 0, then the pointer device does not support a y-axis.
///
UINT64 ResolutionY;
///
/// The resolution of the pointer device on the z-axis in counts/mm.
- /// If 0, then the pointer device does not support an x-axis.
+ /// If 0, then the pointer device does not support a z-axis.
///
UINT64 ResolutionZ;
///
|