diff options
author | Eugene Sandulenko | 2012-04-28 01:00:14 +0300 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-02 12:42:08 +0200 |
commit | 28c78b956dac6ee59d066f7ff2499569fe9877c7 (patch) | |
tree | 07e37e79e5610d3f21d22a8243083b78e09f8542 /engines/wintermute/AdRegion.h | |
parent | 84fd9d0daca1846829b077aa18a7634df5e5ef9e (diff) | |
download | scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.tar.gz scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.tar.bz2 scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.zip |
WINTERMUTE: Mass rename m_FooBar -> _fooBar
Diffstat (limited to 'engines/wintermute/AdRegion.h')
-rw-r--r-- | engines/wintermute/AdRegion.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/AdRegion.h b/engines/wintermute/AdRegion.h index 61bb4d2a58..b1e977155b 100644 --- a/engines/wintermute/AdRegion.h +++ b/engines/wintermute/AdRegion.h @@ -36,10 +36,10 @@ namespace WinterMute { class CAdRegion : public CBRegion {
public:
DECLARE_PERSISTENT(CAdRegion, CBRegion)
- uint32 m_Alpha;
- float m_Zoom;
- bool m_Blocked;
- bool m_Decoration;
+ uint32 _alpha;
+ float _zoom;
+ bool _blocked;
+ bool _decoration;
CAdRegion(CBGame *inGame);
virtual ~CAdRegion();
HRESULT LoadFile(char *Filename);
|