fix indentation

This commit is contained in:
veclav talica 2024-07-30 01:42:49 +03:00
parent e93d5eb863
commit 142321d458
2 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
#include <stdbool.h>
bool infer_elf_section_bounds(const char *restrict name,
const char **restrict vm_start,
const char **restrict vm_end);
const char **restrict vm_start,
const char **restrict vm_end);
#endif

View File

@ -3,9 +3,9 @@
/* alpha channel information */
enum texture_mode {
TEXTURE_MODE_OPAQUE, /* all pixels are solid */
TEXTURE_MODE_SEETHROUGH, /* some pixels are alpha zero */
TEXTURE_MODE_GHOSTLY, /* arbitrary alpha values */
TEXTURE_MODE_OPAQUE, /* all pixels are solid */
TEXTURE_MODE_SEETHROUGH, /* some pixels are alpha zero */
TEXTURE_MODE_GHOSTLY, /* arbitrary alpha values */
};
#endif