Skip to content

Commit

Permalink
ui
Browse files Browse the repository at this point in the history
  • Loading branch information
ShnitzelX2 committed Jan 20, 2025
1 parent d94d8eb commit 7f50545
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game_inventory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1679,7 +1679,7 @@ drop_locations game_menus::inv::edevice_select( Character &who, item_location &u
bool browsed_equal_check = browse_equals == loc->is_browsed();
bool fast_transfer = compat == efile_activity_actor::edevice_compatible::ECOMPAT_FAST;
bool compatible_check = browse_equals || //if browsing, no compatibility check
action == EF_READ && fast_transfer || //if reading, only fast-compatible edevices
( action == EF_READ && fast_transfer ) || //if reading, only fast-compatible edevices
compat != efile_activity_actor::edevice_compatible::ECOMPAT_NONE; //otherwise, any compatible edevice
bool preset_bool = is_tool_has_charge &&
used_edevice_check &&
Expand Down
2 changes: 1 addition & 1 deletion src/game_inventory.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ drop_locations ebooksave( Character &who, item_location &ereader );
* @param unusable_only - if true, only includes e-devices that can't manage files
*/
drop_locations edevice_select( Character &who, item_location &used_edevice, bool browse_equals,
bool auto_include_used_edevice, bool not_usable_only, efile_action action );
bool auto_include_used_edevice, bool unusable_only, efile_action action );
/** Select e-files for read, write, etc. */
drop_locations efile_select( Character &who, item_location &used_edevice,
const std::vector<item_location> &target_edevices, efile_action action, bool from_used_edevice );
Expand Down

0 comments on commit 7f50545

Please sign in to comment.