diff options
| author | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-02-21 18:55:00 +0000 |
|---|---|---|
| committer | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-02-21 18:55:00 +0000 |
| commit | fdd635d273ff6ba6553bab34478ce2a93fdeb830 (patch) | |
| tree | 1520b74b9d66713ff9e63df8cc1ba09ea77c76e9 /Source/Plugins/Plugin_VideoSoftware/Src/Clipper.cpp | |
| parent | f7f11211a1270d34f36a2507a00f25fbbfd7f203 (diff) | |
Warning cleanup, mainly shadowed variables, const/non-const and ctor initialization order
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5098 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoSoftware/Src/Clipper.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoSoftware/Src/Clipper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/Clipper.cpp b/Source/Plugins/Plugin_VideoSoftware/Src/Clipper.cpp index 4fd467a8ca..6b7bdcb5ea 100644 --- a/Source/Plugins/Plugin_VideoSoftware/Src/Clipper.cpp +++ b/Source/Plugins/Plugin_VideoSoftware/Src/Clipper.cpp @@ -160,7 +160,7 @@ namespace Clipper if (mask != 0)
{
- for(int idx = 0; idx < 3; idx += 3)
+ for(int i = 0; i < 3; i += 3)
{
int vlist[2][2*6+1];
int *inlist = vlist[0], *outlist = vlist[1];
|
