| 666 | //=========================================================================== |
| 667 | |
| 668 | static void parseUndefineTile(FScanner& sc, FScriptPosition& pos) |
| 669 | { |
| 670 | int tile; |
| 671 | |
| 672 | if (!sc.GetNumber(tile, true)) return; |
| 673 | if (ValidateTilenum("undefinetile", tile, pos)) |
| 674 | { |
| 675 | auto& tiled = tbuild->tile[tile]; |
| 676 | tiled.tileimage = nullptr; |
| 677 | tiled.imported = nullptr; |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | //=========================================================================== |
| 682 | // |
nothing calls this directly
no test coverage detected