From e1241fd97431c04c34e7c325dec79a4660cd945f Mon Sep 17 00:00:00 2001 From: Benlitz Date: Sun, 20 Oct 2013 16:37:24 +0000 Subject: [PATCH] input: removed static keyword for global input names --- src/input/input.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input/input.h b/src/input/input.h index 70d14db2..864ddcfa 100644 --- a/src/input/input.h +++ b/src/input/input.h @@ -16,8 +16,8 @@ namespace lol { -static const String g_name_mouse("Mouse"); -static const String g_name_keyboard("Keyboard"); +const String g_name_mouse("Mouse"); +const String g_name_keyboard("Keyboard"); class InputDevice {