diff options
author | Ian C <ianc@noddybox.co.uk> | 2020-05-12 21:30:36 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2020-05-12 21:30:36 +0000 |
commit | 43a9eeaa59269fa7058ab4084248a01270c15ca4 (patch) | |
tree | 5ed0ccc350874e5a55ebdc525c02ae5ced55d1be /galax.c | |
parent | c4a574a2ed490a9ec77efc1392260ee4305f1fbf (diff) |
Fixed broken level.
Diffstat (limited to 'galax.c')
-rw-r--r-- | galax.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1651,7 +1651,7 @@ MoveAliens() case 3: /* CARNIVAL */ for(f=0;f<no_aliens;f++) if (alien[f].alive) - if ((alien[f].x+=(y+1))>=WINW) + if ((alien[f].x+=1)>=WINW) alien[f].x-=WINW+SPRW; break; |