Linux build fix in response to r7185.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7187 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
smelenchuk 2011-02-17 09:38:06 +00:00
parent 855bcfa40c
commit fbcd2dbd5c
1 changed files with 3 additions and 2 deletions

View File

@ -38,6 +38,7 @@
#include "DebugUtil.h" #include "DebugUtil.h"
#include "FileUtil.h" #include "FileUtil.h"
#include "VideoBackend.h" #include "VideoBackend.h"
#include "../../../Core/VideoCommon/Src/Fifo.h"
namespace SW namespace SW
{ {
@ -153,12 +154,12 @@ bool VideoBackend::Video_Screenshot(const char *_szFilename)
// ------------------------------- // -------------------------------
void VideoBackend::Video_EnterLoop() void VideoBackend::Video_EnterLoop()
{ {
Fifo_EnterLoop(); EmulatorState(true);
} }
void VideoBackend::Video_ExitLoop() void VideoBackend::Video_ExitLoop()
{ {
Fifo_ExitLoop(); ExitGpuLoop();
} }
void VideoBackend::Video_AddMessage(const char* pstr, u32 milliseconds) void VideoBackend::Video_AddMessage(const char* pstr, u32 milliseconds)