From ff7b7c8838f55dc0f2e76f903630f1d3d2941d5a Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 14 Dec 2009 13:54:34 +0100 Subject: Added everything... -.- --- zoom.cpp | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'zoom.cpp') diff --git a/zoom.cpp b/zoom.cpp index 9535b8a..8f01c1b 100644 --- a/zoom.cpp +++ b/zoom.cpp @@ -1,3 +1,22 @@ +/* + * zoom.cpp + * + * Copyright (C) 2009 Matthias Schiffer + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by the + * Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along + * with this program. If not, see . + */ + #include "Game.h" #include "config.h" #include "gl.h" @@ -13,9 +32,8 @@ void resize(int width, int height) { - if(height==0) - { - height=1; + if(height == 0) { + height = 1; } -- cgit v1.2.3