simple assignments added to pre-processor temporary section of function to avoid unused argument compiler warnings.

This commit is contained in:
Peter Larabell 2012-06-13 21:37:39 +00:00
parent ceffc2cd50
commit 94a0355795
1 changed files with 3 additions and 0 deletions

View File

@ -810,6 +810,9 @@ int PLX_antialias_buffer(float *buf, int buf_x, int buf_y) {
buf[i] *= 0.5f;
}
#endif
buf_x = buf_x;
buf_y = buf_y;
buf[0] = buf[0];
return 1;
#else
/*XXX - TODO: THIS IS NOT FINAL CODE - IT DOES NOT WORK - DO NOT ENABLE IT */