Commit 2be9301410ba8d0a05526c7431a4dac75478e71b

Sam Lantinga 2022-07-18T07:18:56

Fixed comment (thanks @pionere!)

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/SDL_utils_c.h b/src/SDL_utils_c.h
index 8f40515..01efdde 100644
--- a/src/SDL_utils_c.h
+++ b/src/SDL_utils_c.h
@@ -24,7 +24,7 @@
 
 /* Common utility functions that aren't in the public API */
 
-/* Return the smallest power of 2 greater than or equal to 2 */
+/* Return the smallest power of 2 greater than or equal to 'x' */
 int SDL_powerof2(int x);
 
 #endif /* SDL_utils_h_ */