| 622 | //=========================================================================== |
| 623 | |
| 624 | static void parseDummyTile(FScanner& sc, FScriptPosition& pos) |
| 625 | { |
| 626 | int tile, xsiz, ysiz; |
| 627 | |
| 628 | if (!sc.GetNumber(tile, true)) return; |
| 629 | if (!sc.GetNumber(xsiz, true)) return; |
| 630 | if (!sc.GetNumber(ysiz, true)) return; |
| 631 | if (!ValidateTilenum("dummytile", tile, pos)) return; |
| 632 | auto& tiled = tbuild->tile[tile]; |
| 633 | tiled.tileimage = createDummyTile(xsiz, ysiz); |
| 634 | tiled.imported = nullptr; |
| 635 | } |
| 636 | |
| 637 | //=========================================================================== |
| 638 | // |
nothing calls this directly
no test coverage detected