Updated snes_clk for exFAT changes

This commit is contained in:
Kreeblah 2021-04-28 00:44:11 -07:00
parent e78d6e99e0
commit 2c6c1c7f07
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();