diff options
| author | 2014-11-19 09:39:20 -0500 | |
|---|---|---|
| committer | 2014-11-19 09:39:20 -0500 | |
| commit | 112768f4365816d345b0dc9b93bfecc3d41a69b5 (patch) | |
| tree | 6d49fe44d004cb998e0b4b4d26066ae91eef01aa /src/core/hle/service/srv.cpp | |
| parent | Merge pull request #212 from archshift/idea (diff) | |
| parent | Add static to some variables (diff) | |
| download | yuzu-112768f4365816d345b0dc9b93bfecc3d41a69b5.tar.gz yuzu-112768f4365816d345b0dc9b93bfecc3d41a69b5.tar.xz yuzu-112768f4365816d345b0dc9b93bfecc3d41a69b5.zip | |
Merge pull request #208 from lioncash/statics
Add static to some variables
Diffstat (limited to 'src/core/hle/service/srv.cpp')
| -rw-r--r-- | src/core/hle/service/srv.cpp | 2 |
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 | ||
| 12 | namespace SRV { | 12 | namespace SRV { |
| 13 | 13 | ||
| 14 | Handle g_event_handle = 0; | 14 | static Handle g_event_handle = 0; |
| 15 | 15 | ||
| 16 | static void Initialize(Service::Interface* self) { | 16 | static void Initialize(Service::Interface* self) { |
| 17 | DEBUG_LOG(OSHLE, "called"); | 17 | DEBUG_LOG(OSHLE, "called"); |