diff options
author | Mat M <mathew1800@gmail.com> | 2018-11-04 18:04:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-04 18:04:50 -0500 |
commit | e450b0bbac0e161e822c0934023652cf4ec23ba6 (patch) | |
tree | 3eee185445a4e36cf8930a6a85cde675dc5ab92b /src | |
parent | 6664d7b2c5dcff9846e1a77ffa729a53e6261308 (diff) | |
parent | 1c4365d9289e2c3deeef4536246b8be9922c2e9a (diff) |
Merge pull request #1643 from FreddyFunk/typo
Fix typo in BufferTransformFlags
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/nvflinger/buffer_queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.h b/src/core/hle/service/nvflinger/buffer_queue.h index 2fe81a560..8cff5eb71 100644 --- a/src/core/hle/service/nvflinger/buffer_queue.h +++ b/src/core/hle/service/nvflinger/buffer_queue.h @@ -58,9 +58,9 @@ public: /// Rotate source image 90 degrees clockwise Rotate90 = 0x04, /// Rotate source image 180 degrees - Roate180 = 0x03, + Rotate180 = 0x03, /// Rotate source image 270 degrees clockwise - Roate270 = 0x07, + Rotate270 = 0x07, }; struct Buffer { |