typo
This commit is contained in:
2
glfw/internal.h
vendored
2
glfw/internal.h
vendored
@@ -199,7 +199,7 @@ typedef void (APIENTRY * PFN_vkVoidFunction)(void);
|
|||||||
#define remove_i_from_array(array, i, count) { \
|
#define remove_i_from_array(array, i, count) { \
|
||||||
count--; \
|
count--; \
|
||||||
if (i < count) { \
|
if (i < count) { \
|
||||||
memmove(array + i, array + i + 1, sizeof(array[0]) * (count - 1)); \
|
memmove(array + i, array + i + 1, sizeof(array[0]) * (count - i)); \
|
||||||
}}
|
}}
|
||||||
|
|
||||||
// Constructs a version number string from the public header macros
|
// Constructs a version number string from the public header macros
|
||||||
|
|||||||
@@ -261,7 +261,7 @@ typedef struct {FONTS_DATA_HEAD} *FONTS_DATA_HANDLE;
|
|||||||
#define remove_i_from_array(array, i, count) { \
|
#define remove_i_from_array(array, i, count) { \
|
||||||
count--; \
|
count--; \
|
||||||
if (i < count) { \
|
if (i < count) { \
|
||||||
memmove(array + i, array + i + 1, sizeof(array[0]) * (count - 1)); \
|
memmove(array + i, array + i + 1, sizeof(array[0]) * (count - i)); \
|
||||||
}}
|
}}
|
||||||
|
|
||||||
// Global functions
|
// Global functions
|
||||||
|
|||||||
Reference in New Issue
Block a user