Aloha again,
Another question, how do I copy a chtype array into another chtype array? For example, you are at level 15 in the dungeon. You go down the stairs, and it takes chtype level16 and copies it to chtype currentLvl. Then it prints currentLvl.
I tried "currentLvl = level16", but that didn't work. Chtype arrays aren't assignable, I guess. I also considered the function "cpystr", but that's for char arrays, not chtype arrays. Is there a special nCurses function, or do you have to just do it one-by-one (copy level16[1][1], currentLvl[1][1] = level16[1][1], etc)?