1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
Author: Guillem Jover <guillem@hadrons.org>
Description: Fix typos in source code spotted by lintian
Origin: vendor
---
glide2x/cvg/init/video.c | 2 +-
glide2x/sst1/init/initvg/video.c | 2 +-
glide3x/cvg/init/video.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--- a/glide2x/cvg/init/video.c
+++ b/glide2x/cvg/init/video.c
@@ -472,7 +472,7 @@ FX_EXPORT FxBool FX_CSTYLE sst1InitVideo
ISET(sst->fbiInit1, IGET(sst->fbiInit1) | SST_VIDEO_FILTER_EN);
if(GETENV(("SSTV2_VIDEO_FILTER_THRESHOLD"))) {
SSCANF(GETENV(("SSTV2_VIDEO_FILTER_THRESHOLD")), "%ld", &n);
- INIT_PRINTF(("sst1InitVideo(): Setting Video Filtering Treshold to 0x%x...\n", n));
+ INIT_PRINTF(("sst1InitVideo(): Setting Video Filtering Threshold to 0x%x...\n", n));
ISET(sst->videoFilterRgbThreshold, n);
} else
--- a/glide2x/sst1/init/initvg/video.c
+++ b/glide2x/sst1/init/initvg/video.c
@@ -582,7 +582,7 @@ FX_EXPORT FxBool FX_CSTYLE sst1InitVideo
ISET(sst->fbiInit1, IGET(sst->fbiInit1) | SST_VIDEO_FILTER_EN);
if(GETENV(("SST_VIDEO_FILTER_THRESHOLD"))) {
SSCANF(GETENV(("SST_VIDEO_FILTER_THRESHOLD")), "%i", &n);
- INIT_PRINTF(("sst1InitVideo(): Setting Video Filtering Treshold to 0x%x...\n", n));
+ INIT_PRINTF(("sst1InitVideo(): Setting Video Filtering Threshold to 0x%x...\n", n));
ISET(sst->videoFilterRgbThreshold, n);
} else
--- a/glide3x/cvg/init/video.c
+++ b/glide3x/cvg/init/video.c
@@ -470,7 +470,7 @@ FX_EXPORT FxBool FX_CSTYLE sst1InitVideo
ISET(sst->fbiInit1, IGET(sst->fbiInit1) | SST_VIDEO_FILTER_EN);
if(GETENV(("SSTV2_VIDEO_FILTER_THRESHOLD"))) {
SSCANF(GETENV(("SSTV2_VIDEO_FILTER_THRESHOLD")), "%i", &n);
- INIT_PRINTF(("sst1InitVideo(): Setting Video Filtering Treshold to 0x%x...\n", n));
+ INIT_PRINTF(("sst1InitVideo(): Setting Video Filtering Threshold to 0x%x...\n", n));
ISET(sst->videoFilterRgbThreshold, n);
} else
|