map_reveal()

Purpose

Reveals a previously hidden map

Old name

#define revealmap map_reveal

Syntax

void map_reveal(m);

Parameters

int m

Number of map to reveal

Description

The map_reveal() function reveals a map which has previously been hidden with a call to the functions map_hide() or map_change().

This function is implemented as:

map_change(m, RETAIN)

This convenient function can reduce code size if it is called a number of times.

See also

map_change()