Skip to content

Commit

Permalink
fix RFNM source on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreRouma committed Jul 18, 2024
1 parent fe7299c commit 33a7795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source_modules/rfnm_source/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class RFNMSourceModule : public ModuleManager::Instance {
if (path == RFNM_PATH_NULL) { continue; }

// Get the path
PathConfig pc = { path, offset + i, (1 << (offset + i + 8))};
PathConfig pc = { path, offset + i, (uint16_t)(1 << (offset + i + 8))};

// If it's not in the list, add it
if (!paths.valueExists(pc)) {
Expand Down

0 comments on commit 33a7795

Please sign in to comment.