rename Remap_UI_window_backgrounds() to Remap_UI_in_window_backgrounds()

This commit is contained in:
Thomas Bernard 2018-01-26 16:13:03 +01:00
parent d44968f063
commit d79f25c0be
3 changed files with 3 additions and 3 deletions

View File

@ -3531,7 +3531,7 @@ void Remap_window_backgrounds(const byte * conversion_table, int Min_Y, int Max_
} }
} }
void Remap_UI_window_backgrounds(const byte * conversion_table) void Remap_UI_in_window_backgrounds(const byte * conversion_table)
{ {
int i, j; int i, j;
int pos_y; int pos_y;

View File

@ -113,7 +113,7 @@ short Window_get_clicked_button(void);
/// Remaps all the colors from the window background buffers from row Min_Y to row Max_Y /// Remaps all the colors from the window background buffers from row Min_Y to row Max_Y
void Remap_window_backgrounds(const byte * conversion_table, int Min_Y, int Max_Y); void Remap_window_backgrounds(const byte * conversion_table, int Min_Y, int Max_Y);
/// Remaps only UI elements (Windows + Menu) in all window background buffers /// Remaps only UI elements (Windows + Menu) in all window background buffers
void Remap_UI_window_backgrounds(const byte * conversion_table); void Remap_UI_in_window_backgrounds(const byte * conversion_table);
void Pixel_background(int x_pos, int y_pos, byte color); void Pixel_background(int x_pos, int y_pos, byte color);
/// ///

View File

@ -2952,7 +2952,7 @@ void Remap_screen_after_menu_colors_change(void)
} }
// Remap windows and menu in the backgrounds buffers // Remap windows and menu in the backgrounds buffers
Remap_UI_window_backgrounds(conversion_table); Remap_UI_in_window_backgrounds(conversion_table);
if (Menu_is_visible_before_window) if (Menu_is_visible_before_window)
{ {
/* /*