mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-01 22:38:12 +03:00
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:
parent
855bcfa40c
commit
fbcd2dbd5c
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue