Merge pull request #134 from Kreeblah/snes_clk_exfat

Updated snes_clk for exFAT changes
This commit is contained in:
sanni 2021-04-28 09:59:13 +02:00 committed by GitHub
commit 0e39972b9a
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
#include "snes_clk.h"
#include <SdFat.h>
#include "SdFat.h"
#include "atoi32.h"
int32_t readClockOffset() {
File clock_file;
FsFile clock_file;
unsigned char* clock_buf;
int16_t i;
int32_t clock_offset;

View File

@ -1,7 +1,7 @@
#ifndef _SNES_CLK_H
#define _SNES_CLK_H
#include <SdFat.h>
#include "SdFat.h"
#include "atoi32.h"
int32_t readClockOffset();