diff options
Diffstat (limited to 'Stars45/Hoop.cpp')
-rw-r--r-- | Stars45/Hoop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Stars45/Hoop.cpp b/Stars45/Hoop.cpp index 176ba46..2e3be3e 100644 --- a/Stars45/Hoop.cpp +++ b/Stars45/Hoop.cpp @@ -99,7 +99,7 @@ Hoop::CreatePolys() vset->tv[i] = v;
}
- for (i = 0; i < 2; i++) {
+ for (int i = 0; i < 2; i++) {
Poly& poly = polys[i];
poly.nverts = 4;
|