1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Progress on window colour schemes

This commit is contained in:
Robert Jordan
2015-05-26 16:59:25 -04:00
parent 1fe3bacf43
commit 16105af1e7
10 changed files with 552 additions and 17 deletions

View File

@@ -780,7 +780,10 @@ static int cc_open(const char **argv, int argc) {
window_editor_inventions_list_open();
} else if (strcmp(argv[0], "options") == 0) {
window_options_open();
} else {
} else if (strcmp(argv[0], "window_palettes") == 0) {
window_window_palettes_open();
}
else {
console_writeline_error("Invalid window.");
}
}
@@ -827,7 +830,8 @@ char* console_variable_table[] = {
char* console_window_table[] = {
"object_selection",
"inventions_list",
"options"
"options",
"window_palettes"
};
console_command console_command_table[] = {