|
From: Tapio V. <aa...@us...> - 2009-12-11 12:45:46
|
Module: performous
Branch: dance
Commit: 94ea8c0b018d669847fd910f113274a7e3b9fb6f
Author: Xaldyz <xa...@us...>
Date: Wed Dec 9 16:31:12 2009 +0100
Fixed missing h in the header (i18n.h instead i18n.hh)
---
game/main.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/game/main.cc b/game/main.cc
index fb00719..3e9414a 100644
--- a/game/main.cc
+++ b/game/main.cc
@@ -8,7 +8,7 @@
#include "database.hh"
#include "xtime.hh"
#include "video_driver.hh"
-#include "i18n.h"
+#include "i18n.hh"
// Screens
#include "screen_intro.hh"
@@ -211,7 +211,7 @@ int main(int argc, char** argv) {
setlocale (LC_ALL, "");
bindtextdomain (PACKAGE, "../locale");
textdomain (PACKAGE);
-
+
std::cout << PACKAGE " " VERSION << std::endl;
std::signal(SIGINT, quit);
std::signal(SIGTERM, quit);
|