diff options
| author | Philip <philip@philip-linuxlaptop.(none)> | 2010-11-02 03:56:06 (GMT) |
|---|---|---|
| committer | Philip <philip@philip-linuxlaptop.(none)> | 2010-11-02 03:56:06 (GMT) |
| commit | 4e46f51bcf8d47fec91e80ededb618b5e220a516 (patch) | |
| tree | 15aecf929fa0a7b85412c67adef5831c9429c948 /src/graphics.c | |
| parent | 176ecb11974c2fde3a174afcf14ce9922182b50c (diff) | |
| download | powder-4e46f51bcf8d47fec91e80ededb618b5e220a516.zip powder-4e46f51bcf8d47fec91e80ededb618b5e220a516.tar.gz | |
changed moving sign code so it doesn't modify the sign itself.
Diffstat (limited to 'src/graphics.c')
| -rw-r--r-- | src/graphics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics.c b/src/graphics.c index 39f9595..b403fe3 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -2237,7 +2237,7 @@ void render_signs(pixel *vid_buf) x+=dx; y+=dy; } - if(signs[i].m==1) + if(MSIGN==i) { bq = b; b = SDL_GetMouseState(&mx, &my); |
