*** empty log message ***

This commit is contained in:
2006-07-03 05:12:06 -04:00
parent f2ac04d3b5
commit c5264c1887
15 changed files with 692 additions and 822 deletions

View File

@@ -11,27 +11,27 @@ namespace OpenArena
_name = "";
}
int Screen::GetWidth() const
int Screen::GetWidth()
{
return _width;
}
int Screen::GetHeight() const
int Screen::GetHeight()
{
return _height;
}
int Screen::GetColorDepth() const
int Screen::GetColorDepth()
{
return _colorDepth;
}
bool Screen::GetFullscreen() const
bool Screen::GetFullscreen()
{
return _fullscreen;
}
const char* Screen::GetName() const
const char* Screen::GetName()
{
return _name.c_str();
}