Fix misspellings

This commit is contained in:
olzhasar
2023-06-14 03:39:53 +06:00
parent aa0642d3e3
commit d0a5d1b3a4
35 changed files with 53 additions and 53 deletions

View File

@@ -131,7 +131,7 @@ typedef struct {
static inline float
gl_size(const unsigned int sz, const unsigned int viewport_size) {
// convert pixel sz to OpenGL co-ordinate system.
// convert pixel sz to OpenGL coordinate system.
const float px = 2.f / viewport_size;
return px * sz;
}