Skip to content
Snippets Groups Projects
Verified Commit 22ee35dc authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

docs: add new inline comment

parent ea4e5c30
No related branches found
No related tags found
No related merge requests found
Pipeline #3159 passed
...@@ -371,6 +371,8 @@ pub extern "C" fn retro_cheat_reset() { ...@@ -371,6 +371,8 @@ pub extern "C" fn retro_cheat_reset() {
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn retro_cheat_set(_index: c_uint, enabled: bool, code: *const c_char) { pub unsafe extern "C" fn retro_cheat_set(_index: c_uint, enabled: bool, code: *const c_char) {
debugln!("retro_cheat_set()"); debugln!("retro_cheat_set()");
// we'll just ignore cheats that are not enabled, Boytacean
// does not support pre-loading cheats
if !enabled { if !enabled {
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment