diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-11-09 13:17:17 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-11-09 13:17:17 +0000 |
| commit | 530fb9ba3d94ca22201715f78bd7d6da32e48049 (patch) | |
| tree | a0844b5687769e66ab2508963427eb76e8bd8df1 /Source/Core/DiscIO | |
| parent | 42a515ba76640589a59e1b35072c59ebfce126df (diff) | |
Assorted warning fixes, small mixer improvement when both DTK and HLE audio are used
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1100 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/Src/CompressedBlob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/CompressedBlob.cpp b/Source/Core/DiscIO/Src/CompressedBlob.cpp index c0863a82bc..370c8b8ede 100644 --- a/Source/Core/DiscIO/Src/CompressedBlob.cpp +++ b/Source/Core/DiscIO/Src/CompressedBlob.cpp @@ -181,7 +181,7 @@ bool CompressFileToBlob(const char* infile, const char* outfile, u32 sub_type, callback("Files opened, ready to compress.", 0, arg);
fseek(inf, 0, SEEK_END);
- int insize = ftell(inf);
+ s64 insize = ftell(inf);
fseek(inf, 0, SEEK_SET);
CompressedBlobHeader header;
header.magic_cookie = kBlobCookie;
|
