Fixed examples (#505)

This commit is contained in:
mimshipio
2025-08-29 05:49:47 +09:00
committed by GitHub
parent 6530ee136b
commit 9193f38424
5 changed files with 21 additions and 21 deletions

View File

@ -50,12 +50,12 @@ int main()
bool heightEditMode = false;
int pixelFormatActive = 0;
char *pixelFormatTextList[8] = { "CUSTOM", "GRAYSCALE", "GRAY ALPHA", "R5G6B5", "R8G8B8", "R5G5B5A1", "R4G4B4A4", "R8G8B8A8" };
const char *pixelFormatTextList[8] = { "CUSTOM", "GRAYSCALE", "GRAY ALPHA", "R5G6B5", "R8G8B8", "R5G5B5A1", "R4G4B4A4", "R8G8B8A8" };
int channelsActive = 3;
char *channelsTextList[4] = { "1", "2", "3", "4" };
const char *channelsTextList[4] = { "1", "2", "3", "4" };
int bitDepthActive = 0;
char *bitDepthTextList[3] = { "8", "16", "32" };
const char *bitDepthTextList[3] = { "8", "16", "32" };
int headerSizeValue = 0;
bool headerSizeEditMode = false;