mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Second attempt at issue 3458. Fixes issue 3458.
Replaces all occurrences of ftell and fseek with ftello and fseeko, respectively. This matters on non-win32 where only these names are altered by the _FILE_OFFSET_BITS define. Win32 still just maps the funcs to ftelli64/fseeki64. Also add some File::GetSize I had skipped in my last commit. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6515 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -73,8 +73,8 @@ bool WaveFileWriter::Start(const char *filename)
|
||||
Write(100 * 1000 * 1000 - 32);
|
||||
|
||||
// We are now at offset 44
|
||||
if (ftell(file) != 44)
|
||||
PanicAlert("wrong offset: %i", ftell(file));
|
||||
if (ftello(file) != 44)
|
||||
PanicAlert("wrong offset: %i", ftello(file));
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -84,11 +84,11 @@ void WaveFileWriter::Stop()
|
||||
if (!file)
|
||||
return;
|
||||
|
||||
// u32 file_size = (u32)ftell(file);
|
||||
fseek(file, 4, SEEK_SET);
|
||||
// u32 file_size = (u32)ftello(file);
|
||||
fseeko(file, 4, SEEK_SET);
|
||||
Write(audio_size + 36);
|
||||
|
||||
fseek(file, 40, SEEK_SET);
|
||||
fseeko(file, 40, SEEK_SET);
|
||||
Write(audio_size);
|
||||
|
||||
fclose(file);
|
||||
|
Reference in New Issue
Block a user