Some small build fixes

This commit is contained in:
twinaphex 2019-12-29 03:25:06 +01:00
parent fc9e829ff7
commit 0d07a1c849
2 changed files with 2 additions and 3 deletions

View File

@ -64,14 +64,14 @@ unsigned char currentCommand = NO_COMMAND;
#define FLASH_VALID_ID 0x0053
typedef struct NGFheaderStruct
struct NGFheaderStruct
{
unsigned short version; //always 0x53?
unsigned short numBlocks; //how many blocks are in the file
unsigned int fileLen; //length of the file
} ;
typedef struct blockStruct
struct blockStruct
{
unsigned int NGPCaddr; //where this block starts (in NGPC memory map)
unsigned int len; // length of following data

View File

@ -1,7 +1,6 @@
#include "libretro.h"
#include "log.h"
#include <string.h>
#include <fstream>
#include "../StdAfx.h"
#include "../state.h"