diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-26 23:46:36 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-26 23:46:36 +0000 |
commit | 1cadbbbb3a78933f28c113bb8cfab12b25d92ec8 (patch) | |
tree | 5d197bc2aeb0ceffc00e8d8bbcca1c36458f0d2b | |
parent | abe0ca3270213506a3aaa634af660bb5740fd97c (diff) | |
download | xine-lib-1cadbbbb3a78933f28c113bb8cfab12b25d92ec8.tar.gz xine-lib-1cadbbbb3a78933f28c113bb8cfab12b25d92ec8.tar.bz2 |
Correct another color→colour change to a struct member name.
-rw-r--r-- | src/video_out/vidix/drivers/savage_vid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/vidix/drivers/savage_vid.c b/src/video_out/vidix/drivers/savage_vid.c index 0ad7b0b15..17040cc15 100644 --- a/src/video_out/vidix/drivers/savage_vid.c +++ b/src/video_out/vidix/drivers/savage_vid.c @@ -1140,7 +1140,7 @@ vixSetGrKeys (const vidix_grkey_t * grkey) info->use_colorkey = 1; info->vidixcolorkey = ((grkey->ckey.red<<16)|(grkey->ckey.green<<8)|grkey->ckey.blue); - printf("[savage_vid] set colour key 0x%x\n",info->vidixcolourkey); + printf("[savage_vid] set colour key 0x%x\n",info->vidixcolorkey); } //FIXME: freezes if streams arent enabled SavageSetColorKeyOld(); |