fix win32 compilation errors

This commit is contained in:
zeromus 2013-04-13 23:17:46 +00:00
parent 5399af97e9
commit 166e1637fd
2 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,6 @@
#include "driver.h"
#include "cheat.h"
#include "x6502.h"
#include "x6502abbrev.h"
#include "utils/xstring.h"
#include "utils/memory.h"
#include "fceulua.h"
@ -49,6 +48,8 @@ extern TASEDITOR_LUA taseditor_lua;
#include <string>
#include <algorithm>
#include "x6502abbrev.h"
bool CheckLua()
{
#ifdef WIN32

View File

@ -45,7 +45,8 @@
#include "drivers/videolog/nesvideos-piece.h"
#endif
#ifdef WIN32
//no stdint in win32 (but we could add it if we needed to)
#ifndef WIN32
#include <stdint.h>
#endif