MCPcopy Create free account
hub / github.com/NetHack/NetHack / savelevl

Function savelevl

src/save.c:576–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

574}
575
576staticfn void
577savelevl(NHFILE *nhfp)
578{
579 int x, y;
580
581 for (x = 0; x < COLNO; x++) {
582 for (y = 0; y < ROWNO; y++) {
583 Sfo_rm(nhfp, &levl[x][y], "location-rm");
584 }
585 }
586 return;
587}
588
589/* save Plane of Water's air bubbles and Plane of Air's clouds */
590staticfn void

Callers 1

savelev_coreFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected