diff options
author | rubidium <rubidium@openttd.org> | 2009-08-20 10:23:39 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-08-20 10:23:39 +0000 |
commit | 7fb95e2c2b2f84ecf9b5d5d2f02b147d1ad7cb3d (patch) | |
tree | feb24d4a4f522305f7df61aaf26c499eb38c6b6c /src/video | |
parent | 0188ebad5649d4c698245a2fef9039e6155b5f22 (diff) | |
download | openttd-7fb95e2c2b2f84ecf9b5d5d2f02b147d1ad7cb3d.tar.xz |
(svn r17228) -Codechange: some coding style fixes
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/dedicated_v.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp index cce1d2925..5069f8d0a 100644 --- a/src/video/dedicated_v.cpp +++ b/src/video/dedicated_v.cpp @@ -134,8 +134,7 @@ static FVideoDriver_Dedicated iFVideoDriver_Dedicated; const char *VideoDriver_Dedicated::Start(const char * const *parm) { int bpp = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth(); - if (bpp == 0) _dedicated_video_mem = NULL; - else _dedicated_video_mem = MallocT<byte>(_cur_resolution.width * _cur_resolution.height * (bpp / 8)); + _dedicated_video_mem = (bpp == 0) ? NULL : MallocT<byte>(_cur_resolution.width * _cur_resolution.height * (bpp / 8)); _screen.width = _screen.pitch = _cur_resolution.width; _screen.height = _cur_resolution.height; |