Skip to content

Commit

Permalink
Some more console debugger fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
emoon authored and erique committed Mar 30, 2024
1 parent 819e803 commit c4422a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dummy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ static void dummy_close(void) {

// Dummy function to acquire an input device
static int dummy_acquire(int device_id, int exclusive) {
UNIMPLEMENTED();
//UNIMPLEMENTED();
return 0; // Return 0 for success, -1 for failure
}

Expand Down Expand Up @@ -1514,11 +1514,11 @@ int target_get_volume_name(uaedev_mount_info*, uaedev_config_info*, bool, bool,
#endif

void target_inputdevice_acquire() {
UNIMPLEMENTED();
//UNIMPLEMENTED();
}

void target_inputdevice_unacquire() {
UNIMPLEMENTED();
//UNIMPLEMENTED();
}

bool target_isrelativemode() {
Expand Down

0 comments on commit c4422a4

Please sign in to comment.