From d5dfd66812e56147bdfef38aab4c4ebde73364f7 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Fri, 2 Sep 2022 19:42:26 -0400 Subject: [PATCH] CpuFastFill -> CpuFastFill16 in fieldmap --- src/fieldmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fieldmap.c b/src/fieldmap.c index e51e9aca7..1b50b8277 100644 --- a/src/fieldmap.c +++ b/src/fieldmap.c @@ -103,7 +103,7 @@ void InitMapFromSavedGame(void) static void InitMapLayoutData(struct MapHeader * mapHeader) { const struct MapLayout * mapLayout = mapHeader->mapLayout; - CpuFastFill(MAPGRID_UNDEFINED << 16 | MAPGRID_UNDEFINED, gBackupMapData, sizeof(gBackupMapData)); + CpuFastFill16(MAPGRID_UNDEFINED, gBackupMapData, sizeof(gBackupMapData)); VMap.map = gBackupMapData; VMap.Xsize = mapLayout->width + MAP_OFFSET_W; VMap.Ysize = mapLayout->height + MAP_OFFSET_H;