diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-08-14 03:10:17 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 03:10:17 -0300 |
commit | e0505947064e8e8dd4fd145c1f6dcbbb5ae5373f (patch) | |
tree | 2f5e734e057003f41ca5271f6856e56960c7d33c /src/core/memory | |
parent | a9de967fa3bf88666bb63b1228b16a82b6e2a6fb (diff) | |
parent | 5b8929130843124ed0ffeb2caabb13a8a2f443c0 (diff) |
Merge pull request #4495 from lioncash/conv
cheat_engine: Resolve implicit bool->u64 conversion
Diffstat (limited to 'src/core/memory')
-rw-r--r-- | src/core/memory/cheat_engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory/cheat_engine.cpp b/src/core/memory/cheat_engine.cpp index 4b5cd0624..e503118dd 100644 --- a/src/core/memory/cheat_engine.cpp +++ b/src/core/memory/cheat_engine.cpp @@ -42,7 +42,7 @@ u64 StandardVmCallbacks::HidKeysDown() { if (applet_resource == nullptr) { LOG_WARNING(CheatEngine, "Attempted to read input state, but applet resource is not initialized!"); - return false; + return 0; } const auto press_state = |