Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/132#discussion_r161150191
--- Diff: src/terminal/display.c ---
@@ -246,7 +246,8 @@ int __guac_terminal_set(guac_terminal_display* display,
int row, int col, int co
guac_terminal_display* guac_terminal_display_alloc(guac_client* client,
const char* font_name, int font_size, int dpi,
- guac_terminal_color* foreground, guac_terminal_color* background) {
+ guac_terminal_color* foreground, guac_terminal_color* background,
+ const guac_terminal_color (*palette)[256]) {
--- End diff --
It's beginning to feel like perhaps the foreground, background, and
256-color palette should be moved into their own struct.
---