mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-05-18 15:29:16 +02:00
fygue: switch tabs to spaces :)
This commit is contained in:
parent
817e654e74
commit
7ff93e79f0
61 changed files with 2094 additions and 2101 deletions
|
@ -2,10 +2,6 @@
|
|||
#include <string.h>
|
||||
#include "fat.h"
|
||||
|
||||
uintptr_t debug_read_addr = 0;
|
||||
size_t debug_read_size = 0;
|
||||
int debug_read_off = 0;
|
||||
|
||||
/* fygue_fat_file_read(): read primitive */
|
||||
int fygue_fat_file_read(
|
||||
struct fygue_fat *fat,
|
||||
|
@ -34,9 +30,6 @@ int fygue_fat_file_read(
|
|||
chunk_data_available -= chunk_data_offset;
|
||||
if (read + chunk_data_available > size)
|
||||
{
|
||||
debug_read_addr = chunk_data_addr;
|
||||
debug_read_size = size - read;
|
||||
debug_read_off = chunk_data_offset;
|
||||
chunk_data_offset += size - read;
|
||||
memcpy(buffer, (void*)chunk_data_addr, size - read);
|
||||
read += size - read;
|
||||
|
|
Loading…
Add table
Reference in a new issue