Skip to content

Commit

Permalink
Update to v1.73.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkMatterCore committed Feb 9, 2020
1 parent 6c8401b commit 3759dd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CFLAGS=-std=c99 -pedantic -Wall -O3
CFLAGS=-std=c99 -Wall -Wextra -O2
#STRIP=i586-mingw32msvc-strip
#CC=i586-mingw32msvc-gcc
STRIP=strip
Expand Down
8 changes: 4 additions & 4 deletions sbn64.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <errno.h>
#include <stdint.h>
#include <inttypes.h>

#if defined(__MINGW32__) || defined(_MSC_VER)
#define strncasecmp _strnicmp
Expand All @@ -13,7 +13,7 @@

//#define DEBUG

#define VERSION "1.72"
#define VERSION "1.73"

#define EEPROM 0x200 // 512 bytes (EEPROM 4 Kbits) (used in physical cartridges)
#define EEPROMx4 0x800 // 2 KiB (EEPROM 16 Kbits) (used in physical cartridges) (used in Project64 and Wii64/Not64)
Expand Down Expand Up @@ -544,7 +544,7 @@ int main(int argc, char **argv)
}
}

printf("\n\tDetected save type: %s (%lu Kbits).\n", SAVE_TYPE_STR(save_type), ((save_type_size * 8) / 1024));
printf("\n\tDetected save type: %s (%" PRIu64 " Kbits).\n", SAVE_TYPE_STR(save_type), ((save_type_size * 8) / 1024));

if (src_fmt == FORMAT_TYPE_SIXTYFORCE && sixtyforce_ctrlpak_available && (dst_fmt == FORMAT_TYPE_WII64 || dst_fmt == FORMAT_TYPE_PROJECT64))
{
Expand Down

0 comments on commit 3759dd6

Please sign in to comment.