summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-29 23:26:58 -0400
committerGravatar bunnei2014-05-29 23:26:58 -0400
commitc404d22036e16d20d91fca0cf29d56785656c0f5 (patch)
tree8dd5aa70a08441dc3139a22bf94e8fccd5414649 /src/core/hle/hle.cpp
parentsvc: updated OutputDebugString to use OS_LOG (diff)
downloadyuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.gz
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.xz
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.zip
hle: cleaned up log messages
Diffstat (limited to 'src/core/hle/hle.cpp')
-rw-r--r--src/core/hle/hle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp
index 080c36abf..f703da44e 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -18,7 +18,7 @@ static std::vector<ModuleDef> g_module_db;
18const FunctionDef* GetSVCInfo(u32 opcode) { 18const FunctionDef* GetSVCInfo(u32 opcode) {
19 u32 func_num = opcode & 0xFFFFFF; // 8 bits 19 u32 func_num = opcode & 0xFFFFFF; // 8 bits
20 if (func_num > 0xFF) { 20 if (func_num > 0xFF) {
21 ERROR_LOG(HLE,"Unknown SVC: 0x%02X", func_num); 21 ERROR_LOG(HLE,"unknown svc=0x%02X", func_num);
22 return NULL; 22 return NULL;
23 } 23 }
24 return &g_module_db[0].func_table[func_num]; 24 return &g_module_db[0].func_table[func_num];
@@ -33,7 +33,7 @@ void CallSVC(u32 opcode) {
33 if (info->func) { 33 if (info->func) {
34 info->func(); 34 info->func();
35 } else { 35 } else {
36 ERROR_LOG(HLE, "Unimplemented SVC function %s(..)", info->name.c_str()); 36 ERROR_LOG(HLE, "unimplemented SVC function %s(..)", info->name.c_str());
37 } 37 }
38} 38}
39 39
@@ -43,7 +43,7 @@ void EatCycles(u32 cycles) {
43 43
44void ReSchedule(const char *reason) { 44void ReSchedule(const char *reason) {
45#ifdef _DEBUG 45#ifdef _DEBUG
46 _dbg_assert_msg_(HLE, reason != 0 && strlen(reason) < 256, "ReSchedule: Invalid or too long reason."); 46 _dbg_assert_msg_(HLE, reason != 0 && strlen(reason) < 256, "Reschedule: Invalid or too long reason.");
47#endif 47#endif
48 // TODO: ImplementMe 48 // TODO: ImplementMe
49} 49}