I'm making maze game and everything is working grate so far, but last thing I want to improve is more efficient screen output. Each move wipe and rewrite everything causing screen blink and use more time than it could (it's ms but still). I'm searching for way to refresh only changed array spots.
My brother gave me it as learning task, but he haven't used C++ for long and can't remember where to direct for help.
You probably know how to make maze game so I'm just showing excerpt from code I'm using system("cls").
BTW my maze is # # # # in X axis to compensate width and hence +/- 2 moving horizontally.
A simple way to do that would be to output many empty lines on the console until you get to a point where it's clear. I know, it's sort of, em pathetic, but it works :P