fix replay-related posix build error

This commit is contained in:
zeromus 2018-09-15 16:58:10 -04:00
parent e09f269914
commit 0c6f18d5eb
2 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/* /*
Copyright (C) 2008-2015 DeSmuME team Copyright (C) 2008-2018 DeSmuME team
This file is free software: you can redistribute it and/or modify This file is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -18,8 +18,6 @@
#ifndef _WIN_REPLAY_H_ #ifndef _WIN_REPLAY_H_
#define _WIN_REPLAY_H_ #define _WIN_REPLAY_H_
enum START_FROM { START_BLANK, START_SRAM, START_SAVESTATE };
void Replay_LoadMovie(); void Replay_LoadMovie();
void MovieRecordTo(); void MovieRecordTo();

View File

@ -1,5 +1,5 @@
/* /*
Copyright 2008-2017 DeSmuME team Copyright 2008-2018 DeSmuME team
This file is free software: you can redistribute it and/or modify This file is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -28,7 +28,7 @@
#include "utils/guid.h" #include "utils/guid.h"
#include "utils/md5.h" #include "utils/md5.h"
#include "replay.h" enum START_FROM { START_BLANK, START_SRAM, START_SAVESTATE };
struct UserInput; struct UserInput;
class EMUFILE; class EMUFILE;