Use four spaces instead of tabs in c++

This commit is contained in:
Charles Cook 2016-07-05 20:32:37 -04:00
parent 6d268099f5
commit 8b36e4c54a
1 changed files with 7 additions and 7 deletions

View File

@ -530,14 +530,14 @@ private:
_dirtyGrid.Blocks = new uint8[_dirtyGrid.BlockColumns * _dirtyGrid.BlockRows];
}
static void ResetWindowVisbilities()
static void ResetWindowVisbilities()
{
// reset window visibilty status to unknown
for (rct_window *w = g_window_list; w < gWindowNextSlot; w++)
{
w->visibility = VC_UNKNOWN;
if (w->viewport != NULL) w->viewport->visibility = VC_UNKNOWN;
}
// reset window visibilty status to unknown
for (rct_window *w = g_window_list; w < gWindowNextSlot; w++)
{
w->visibility = VC_UNKNOWN;
if (w->viewport != NULL) w->viewport->visibility = VC_UNKNOWN;
}
}
void DrawAllDirtyBlocks()