add yaze prefix to get_color_from_paletteset

This commit is contained in:
scawful
2024-08-08 21:18:42 -04:00
parent 200659e5d9
commit bda251767c
2 changed files with 4 additions and 4 deletions

View File

@@ -34,8 +34,8 @@ void yaze_unload_rom(z3_rom* rom) {
}
}
snes_color get_color_from_paletteset(const rom* rom, int palette_set,
int palette, int color) {
snes_color yaze_get_color_from_paletteset(const z3_rom* rom, int palette_set,
int palette, int color) {
snes_color color_struct;
color_struct.red = 0;
color_struct.green = 0;

View File

@@ -32,8 +32,8 @@ struct yaze_flags {
z3_rom* yaze_load_rom(const char* filename);
void yaze_unload_rom(z3_rom* rom);
snes_color get_color_from_paletteset(const rom* rom, int palette_set,
int palette, int color);
snes_color yaze_get_color_from_paletteset(const z3_rom* rom, int palette_set,
int palette, int color);
#ifdef __cplusplus
}