diff options
| author | 2014-04-10 22:45:40 -0400 | |
|---|---|---|
| committer | 2014-04-10 22:45:40 -0400 | |
| commit | 5d95bb98434b8e7cd67010f6064ccdb69c1222bb (patch) | |
| tree | 5d4c4f1b10d37e2619322a7f837883d61b1d2865 /src/core/hw/hw.cpp | |
| parent | added logger for generic HLE (diff) | |
| download | yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar.gz yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar.xz yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.zip | |
cleaned up some logging messages
Diffstat (limited to 'src/core/hw/hw.cpp')
| -rw-r--r-- | src/core/hw/hw.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp index 44625e3af..7191d7c60 100644 --- a/src/core/hw/hw.cpp +++ b/src/core/hw/hw.cpp | |||
| @@ -12,12 +12,12 @@ namespace HW { | |||
| 12 | 12 | ||
| 13 | template <typename T> | 13 | template <typename T> |
| 14 | inline void Read(T &var, const u32 addr) { | 14 | inline void Read(T &var, const u32 addr) { |
| 15 | NOTICE_LOG(HW, "Hardware read from address %08X", addr); | 15 | NOTICE_LOG(HW, "read from address %08X", addr); |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | template <typename T> | 18 | template <typename T> |
| 19 | inline void Write(u32 addr, const T data) { | 19 | inline void Write(u32 addr, const T data) { |
| 20 | NOTICE_LOG(HW, "Hardware write to address %08X", addr); | 20 | NOTICE_LOG(HW, "write to address %08X", addr); |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | // Explicitly instantiate template functions because we aren't defining this in the header: | 23 | // Explicitly instantiate template functions because we aren't defining this in the header: |
| @@ -40,12 +40,12 @@ void Update() { | |||
| 40 | /// Initialize hardware | 40 | /// Initialize hardware |
| 41 | void Init() { | 41 | void Init() { |
| 42 | LCD::Init(); | 42 | LCD::Init(); |
| 43 | NOTICE_LOG(HW, "Hardware initialized OK"); | 43 | NOTICE_LOG(HW, "initialized OK"); |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | /// Shutdown hardware | 46 | /// Shutdown hardware |
| 47 | void Shutdown() { | 47 | void Shutdown() { |
| 48 | NOTICE_LOG(HW, "Hardware shutdown OK"); | 48 | NOTICE_LOG(HW, "shutdown OK"); |
| 49 | } | 49 | } |
| 50 | 50 | ||
| 51 | } \ No newline at end of file | 51 | } \ No newline at end of file |