diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 31b9bc8..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,2 +0,0 @@ -# These are supported funding model platforms -ko_fi: darkmattercore diff --git a/example/Makefile b/example/Makefile index daa68f2..2483305 100644 --- a/example/Makefile +++ b/example/Makefile @@ -69,7 +69,7 @@ ASFLAGS := -g $(ARCH) LDFLAGS = -specs=$(DEVKITPRO)/libnx/switch.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map) # Use -lusbhsfsd instead of -lusbhsfs to use the library build with debug logging enabled -LIBS := -lusbhsfsd +LIBS := -lusbhsfs ifeq ($(filter $(MAKECMDGOALS),clean),) # Check BUILD_TYPE flag diff --git a/include/usbhsfs.h b/include/usbhsfs.h index 575fa51..cbc092e 100644 --- a/include/usbhsfs.h +++ b/include/usbhsfs.h @@ -22,7 +22,7 @@ extern "C" { /// Library version. #define LIBUSBHSFS_VERSION_MAJOR 0 #define LIBUSBHSFS_VERSION_MINOR 2 -#define LIBUSBHSFS_VERSION_MICRO 6 +#define LIBUSBHSFS_VERSION_MICRO 7 /// Helper macro to generate a string based on a filesystem type value. #define LIBUSBHSFS_FS_TYPE_STR(x) ((x) == UsbHsFsDeviceFileSystemType_FAT12 ? "FAT12" : ((x) == UsbHsFsDeviceFileSystemType_FAT16 ? "FAT16" : ((x) == UsbHsFsDeviceFileSystemType_FAT32 ? "FAT32" : \