Browse Source
Merge pull request #4495 from lioncash/conv
cheat_engine: Resolve implicit bool->u64 conversion
pull/15/merge
Rodrigo Locatti
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 = |
|
|
|
|