fix some visual studio issues.

This commit is contained in:
Cracker64 2011-01-28 20:53:02 -05:00
parent 964ecf2ecf
commit 01304db892
3 changed files with 4 additions and 3 deletions

View File

@ -2,9 +2,9 @@
// Interactions which only occur when legacy_enable is on // Interactions which only occur when legacy_enable is on
int update_legacy_all(UPDATE_FUNC_ARGS) { int update_legacy_all(UPDATE_FUNC_ARGS) {
if (!legacy_enable) return 0;
int r, rx, ry, rt; int r, rx, ry, rt;
int t = parts[i].type; int t = parts[i].type;
if (!legacy_enable) return 0;
if (t==PT_WTRV) { if (t==PT_WTRV) {
for (rx=-2; rx<3; rx++) for (rx=-2; rx<3; rx++)
for (ry=-2; ry<3; ry++) for (ry=-2; ry<3; ry++)

View File

@ -1,9 +1,9 @@
#include <element.h> #include <element.h>
int update_PHOT(UPDATE_FUNC_ARGS) { int update_PHOT(UPDATE_FUNC_ARGS) {
if (1>rand()%10) update_PYRO(UPDATE_FUNC_SUBCALL_ARGS);
int r, rt, rx, ry; int r, rt, rx, ry;
float rr, rrr; float rr, rrr;
if (1>rand()%10) update_PYRO(UPDATE_FUNC_SUBCALL_ARGS);
for (rx=-1; rx<2; rx++) for (rx=-1; rx<2; rx++)
for (ry=-1; ry<2; ry++) for (ry=-1; ry<2; ry++)
if (x+rx>=0 && y+ry>0 && x+rx<XRES && y+ry<YRES && (rx || ry)) { if (x+rx>=0 && y+ry>0 && x+rx<XRES && y+ry<YRES && (rx || ry)) {

View File

@ -1,8 +1,9 @@
#include <element.h> #include <element.h>
int update_SPRK(UPDATE_FUNC_ARGS) { int update_SPRK(UPDATE_FUNC_ARGS) {
update_PYRO(UPDATE_FUNC_SUBCALL_ARGS);
int r, rx, ry, rt, conduct_sprk, nearp, pavg, ct = parts[i].ctype; int r, rx, ry, rt, conduct_sprk, nearp, pavg, ct = parts[i].ctype;
update_PYRO(UPDATE_FUNC_SUBCALL_ARGS);
if (parts[i].life<=0) if (parts[i].life<=0)
{ {
if (ct==PT_WATR||ct==PT_SLTW||ct==PT_PSCN||ct==PT_NSCN||ct==PT_ETRD||ct==PT_INWR) if (ct==PT_WATR||ct==PT_SLTW||ct==PT_PSCN||ct==PT_NSCN||ct==PT_ETRD||ct==PT_INWR)