diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2013-06-04 02:42:05 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2013-06-04 02:42:05 +0000 |
commit | 807c798e730f0bb4eafc3790a7742fc313b0c6c3 (patch) | |
tree | 122e15f0a11950ebb330d7a6dbf295f8d813940d /games | |
parent | d3597ba5ab9bc9afbdafb4e2327c6859a9d76da7 (diff) | |
download | ports-807c798e730f0bb4eafc3790a7742fc313b0c6c3.tar.gz ports-807c798e730f0bb4eafc3790a7742fc313b0c6c3.zip |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/chroma/files/patch-sdlshadowdisplay.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/games/chroma/files/patch-sdlshadowdisplay.c b/games/chroma/files/patch-sdlshadowdisplay.c new file mode 100644 index 000000000000..057e2f505e04 --- /dev/null +++ b/games/chroma/files/patch-sdlshadowdisplay.c @@ -0,0 +1,47 @@ +--- sdlshadowdisplay.c.orig 2010-03-01 10:07:00.000000000 +0300 ++++ sdlshadowdisplay.c 2013-06-04 03:08:27.120111885 +0400 +@@ -88,7 +88,7 @@ + void displayshadowed_level(struct level* plevel); + void displayshadowed_movers(struct level* plevel, int redraw); + +-inline void displayshadowed_piece(struct level* plevel, int p, int x, int y, int d) ++static inline void displayshadowed_piece(struct level* plevel, int p, int x, int y, int d) + { + SDL_Surface *pimage; + +@@ -255,7 +255,7 @@ + } + } + +-inline void displayshadowed_pieceshadow(struct level* plevel, int p, int x, int y, int d) ++static inline void displayshadowed_pieceshadow(struct level* plevel, int p, int x, int y, int d) + { + SDL_Surface *pimage; + +@@ -310,7 +310,7 @@ + SDL_BlitSurface(pimage, &srect, screen_surface, &drect); + } + +-inline void displayshadowed_piecebase(struct level* plevel, int x, int y) ++static inline void displayshadowed_piecebase(struct level* plevel, int x, int y) + { + int p; + SDL_Surface *pimage; +@@ -1063,7 +1063,7 @@ + } + } + +-inline void displayshadowed_redrawpiece(int p, int x, int y, int d) ++static inline void displayshadowed_redrawpiece(int p, int x, int y, int d) + { + int dx, dy; + +@@ -1111,7 +1111,7 @@ + screen_redraw(0, 0, screen_width, screen_height); + } + +-inline int displayshadowed_count(struct level* plevel, int x, int y, int delta) ++static inline int displayshadowed_count(struct level* plevel, int x, int y, int delta) + { + unsigned int d; + |