summaryrefslogtreecommitdiff
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2014-11-18 08:48:11 -0500
committerGravatar Lioncash2014-11-18 20:04:00 -0500
commit7cbecde2ca1b0ea3faf4caf384b6512cb9849162 (patch)
tree9ab722431792e984297aa71a10a0359e9aab80e4 /src/core/hle/service/srv.cpp
parentMerge pull request #200 from lioncash/statics (diff)
downloadyuzu-7cbecde2ca1b0ea3faf4caf384b6512cb9849162.tar.gz
yuzu-7cbecde2ca1b0ea3faf4caf384b6512cb9849162.tar.xz
yuzu-7cbecde2ca1b0ea3faf4caf384b6512cb9849162.zip
Add static to some variables
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 420f53f8f..df38bd93c 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -11,7 +11,7 @@
11 11
12namespace SRV { 12namespace SRV {
13 13
14Handle g_event_handle = 0; 14static Handle g_event_handle = 0;
15 15
16static void Initialize(Service::Interface* self) { 16static void Initialize(Service::Interface* self) {
17 DEBUG_LOG(OSHLE, "called"); 17 DEBUG_LOG(OSHLE, "called");