mirror of https://github.com/OpenTTD/OpenTTD
(svn r4652) - NewGRF: support loading of foundation and canal graphics from NewGRF files via action 5
parent
6942f235cc
commit
6ed002db53
16
newgrf.c
16
newgrf.c
|
@ -1915,6 +1915,22 @@ static void GraphicsNew(byte *buf, int len)
|
||||||
replace = SPR_ELRAIL_BASE + 3;
|
replace = SPR_ELRAIL_BASE + 3;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 0x06: /* Foundations */
|
||||||
|
if (num != 74) {
|
||||||
|
grfmsg(GMS_WARN, "GraphicsNews: Foundation graphics sprite count must be 74, skipping.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
replace = SPR_SLOPES_BASE;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 0x08: /* Canal graphics */
|
||||||
|
if (num != 65) {
|
||||||
|
grfmsg(GMS_WARN, "GraphicsNews: Canal graphics sprite count must be 65, skipping.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
replace = SPR_CANALS_BASE + 5;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
grfmsg(GMS_NOTICE, "GraphicsNew: Custom graphics (type 0x%02X) sprite block of length %u (unimplemented, ignoring).\n",
|
grfmsg(GMS_NOTICE, "GraphicsNew: Custom graphics (type 0x%02X) sprite block of length %u (unimplemented, ignoring).\n",
|
||||||
type, num);
|
type, num);
|
||||||
|
|
Loading…
Reference in New Issue