Fix string constness issues in RGBASM

This commit is contained in:
ISSOtm
2022-02-05 13:34:47 +01:00
committed by Eldred Habert
parent b3304ae1ac
commit bbae9966e9
4 changed files with 6 additions and 6 deletions

View File

@@ -12,8 +12,8 @@
#include <stdbool.h>
#include <stdint.h>
void opt_B(char chars[2]);
void opt_G(char chars[4]);
void opt_B(char const chars[2]);
void opt_G(char const chars[4]);
void opt_P(uint8_t fill);
void opt_L(bool optimize);
void opt_W(char const *flag);