From 783545505aa51e4f908932fffb1f8362ad898d44 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 21 Oct 2007 15:16:27 +0000 Subject: Fixed camera Added alpha blending to background --- src/client/main.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/client/main.cc') diff --git a/src/client/main.cc b/src/client/main.cc index 66e0fa3..696c02f 100644 --- a/src/client/main.cc +++ b/src/client/main.cc @@ -1,4 +1,4 @@ -/* main.cc +/* client/main.cc This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ @@ -10,21 +10,21 @@ #include // project headers -#include "common/osirion.h" +#include "osirion.h" #include "game/game.h" #include "input.h" #include "video.h" -void quit(int exit_code) +void quit(int status) { SDL_Quit(); - exit(exit_code); + exit(status); } int main( int argc, char *argv[] ) { - std::cout << "The Osirion project " << OSIRION_VERSION << std::endl; + std::cout << "Project::OSiRiON " << OSIRION_VERSION << std::endl; // Initialize the video subsystem video::init(); @@ -39,7 +39,7 @@ int main( int argc, char *argv[] ) game::init(); Uint32 startup = SDL_GetTicks(); - while(game::initialized) { + while(game::initialized) { Uint32 chrono = SDL_GetTicks(); // overflow protection ~49 days -- cgit v1.2.3