mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 14:39:58 +00:00
cheat_engine: Resolve implicit bool->u64 conversion
We can just return zero here.
This commit is contained in:
parent
1cc0e4b4d8
commit
5b89291308
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ u64 StandardVmCallbacks::HidKeysDown() {
|
||||||
if (applet_resource == nullptr) {
|
if (applet_resource == nullptr) {
|
||||||
LOG_WARNING(CheatEngine,
|
LOG_WARNING(CheatEngine,
|
||||||
"Attempted to read input state, but applet resource is not initialized!");
|
"Attempted to read input state, but applet resource is not initialized!");
|
||||||
return false;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto press_state =
|
const auto press_state =
|
||||||
|
|
Loading…
Reference in a new issue