diff options
| author | Max Horn | 2003-10-04 01:09:29 +0000 |
|---|---|---|
| committer | Max Horn | 2003-10-04 01:09:29 +0000 |
| commit | 2162df92fc5efbe64bce31c91d880c47e1daa44d (patch) | |
| tree | 3fba0152ccea9440f760e53031023210e0d6e8f0 /sword2/controls.h | |
| parent | 3ef5a410a3337b323b40fc6828df7d11aa4016ae (diff) | |
| download | scummvm-rg350-2162df92fc5efbe64bce31c91d880c47e1daa44d.tar.gz scummvm-rg350-2162df92fc5efbe64bce31c91d880c47e1daa44d.tar.bz2 scummvm-rg350-2162df92fc5efbe64bce31c91d880c47e1daa44d.zip | |
removed Sword2 prefixes of most classes (made obsolete by our namespace usage); renamed Sword2State to Sword2Engine
svn-id: r10583
Diffstat (limited to 'sword2/controls.h')
| -rw-r--r-- | sword2/controls.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sword2/controls.h b/sword2/controls.h index 3124e155b9..49e06f0274 100644 --- a/sword2/controls.h +++ b/sword2/controls.h @@ -22,7 +22,7 @@ namespace Sword2 { -class Sword2Gui { +class Gui { public: int _baseSlot; uint8 _currentGraphicsLevel; @@ -32,7 +32,7 @@ public: uint8 _stereoReversed; uint8 _pointerTextSelected; - Sword2Gui() : _baseSlot(0), _stereoReversed(0), + Gui() : _baseSlot(0), _stereoReversed(0), _pointerTextSelected(0) {} uint32 restoreControl(void); @@ -44,7 +44,7 @@ public: void updateGraphicsLevel(uint8 newLevel); }; -extern Sword2Gui gui; +extern Gui gui; } // End of namespace Sword2 |
