| 168 | } |
| 169 | |
| 170 | const struct TileImage * |
| 171 | get_tile(unsigned tile_index) |
| 172 | { |
| 173 | if (tile_index >= num_tiles) |
| 174 | return &blank_tile; |
| 175 | return &tiles[tile_index]; |
| 176 | } |
| 177 | |
| 178 | /* Note that any tile returned by this function must be freed */ |
| 179 | struct TileImage * |
no outgoing calls
no test coverage detected