summaryrefslogtreecommitdiff
path: root/beos
diff options
context:
space:
mode:
Diffstat (limited to 'beos')
-rw-r--r--beos/system_colour.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/beos/system_colour.cpp b/beos/system_colour.cpp
index cf47e1eda..921157c84 100644
--- a/beos/system_colour.cpp
+++ b/beos/system_colour.cpp
@@ -332,10 +332,8 @@ colour gui_system_colour_char(const char *name)
unsigned int ccount;
for (ccount = 0; ccount < colour_list_len; ccount++) {
- if (strncasecmp(name,
- colour_list[ccount].name,
- colour_list[ccount].length) == 0) {
- ret = colour_list[ccount].css_colour;
+ if (strcmp(name, colour_list[ccount].name) == 0) {
+ ret = colour_list[ccount].colour;
break;
}
}