This commit is contained in:
Glenn Maynard
2006-07-25 19:35:06 +00:00
parent 263ad101d5
commit 99102370ca
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -355,7 +355,7 @@ public:
}
// Obtain the current matrix at the top of the stack
const RageMatrix* GetTop() { return &stack.back(); }
const RageMatrix* GetTop() const { return &stack.back(); }
void SetTop( const RageMatrix &m ) { stack.back() = m; }
};