aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorspicyjpeg <thatspicyjpeg@gmail.com>2022-07-30 00:53:31 +0200
committerspicyjpeg <thatspicyjpeg@gmail.com>2022-07-30 00:53:31 +0200
commit073a859acf16ccbc0f49364e38126bf2bf03aa3d (patch)
tree90fac6072c5fe3ccee0505c881f89aa262d4eed7 /tools
parent0e755e9801a2dcf7b9827c90cc38e9f532d06393 (diff)
downloadpsn00bsdk-073a859acf16ccbc0f49364e38126bf2bf03aa3d.tar.gz
Deprecate u_short, u_int and u_long types in libpsn00b
Diffstat (limited to 'tools')
-rw-r--r--tools/lzpack/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/lzpack/main.cpp b/tools/lzpack/main.cpp
index 506b76c..798408c 100644
--- a/tools/lzpack/main.cpp
+++ b/tools/lzpack/main.cpp
@@ -28,10 +28,10 @@ typedef struct {
} PCK_FILE;
typedef struct {
- char id[3];
- u_char numFiles;
- PCK_FILE file[85]; // File entries
- int lba; // LBA of the PCK file (in 2048 byte sector units)
+ char id[3];
+ unsigned char numFiles;
+ PCK_FILE file[85]; // File entries
+ int lba; // LBA of the PCK file (in 2048 byte sector units)
} PCK_TOC;