1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 23:34:37 +01:00

Follow coding standard for project.

This commit is contained in:
Charles Cook
2016-07-05 19:40:20 -04:00
parent 5c9110b99a
commit 6d268099f5
2 changed files with 4 additions and 4 deletions

View File

@@ -365,7 +365,7 @@ public:
_rainDrawer.SetDPI(&_bitsDPI);
_rainDrawer.Restore();
ResetWindowVisbilities();
ResetWindowVisbilities();
// Redraw dirty regions before updating the viewports, otherwise
// when viewports get panned, they copy dirty pixels

View File

@@ -497,9 +497,9 @@ enum {
enum VISIBILITY_CACHE
{
VC_UNKNOWN = 0,
VC_VISIBLE = 1,
VC_COVERED = 2
VC_UNKNOWN,
VC_VISIBLE,
VC_COVERED
};
typedef void (*modal_callback)(int result);