summaryrefslogtreecommitdiff
path: root/src/pixmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pixmap.c')
-rw-r--r--src/pixmap.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pixmap.c b/src/pixmap.c
index 147a590..cf89eb2 100644
--- a/src/pixmap.c
+++ b/src/pixmap.c
@@ -222,15 +222,15 @@ parse_pixmap_ops(char *str)
D_PIXMAP(("parse_pixmap_ops(str [%s]) called.\n", str));
for (; (token = (char *) strsep(&str, ":"));) {
- if (!BEG_STRCASECMP("tiled", token)) {
+ if (!BEG_STRCASECMP(token, "tile")) {
op |= OP_TILE;
- } else if (!BEG_STRCASECMP("hscaled", token)) {
+ } else if (!BEG_STRCASECMP(token, "hscale")) {
op |= OP_HSCALE;
- } else if (!BEG_STRCASECMP("vscaled", token)) {
+ } else if (!BEG_STRCASECMP(token, "vscale")) {
op |= OP_VSCALE;
- } else if (!BEG_STRCASECMP("scaled", token)) {
+ } else if (!BEG_STRCASECMP(token, "scale")) {
op |= OP_SCALE;
- } else if (!BEG_STRCASECMP("propscaled", token)) {
+ } else if (!BEG_STRCASECMP(token, "propscale")) {
op |= OP_PROPSCALE;
}
}