summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/MainBase.cpp
diff options
context:
space:
mode:
authorJules Blok <jules.blok@gmail.com>2015-06-09 09:43:26 +0200
committerJules Blok <jules.blok@gmail.com>2015-06-09 09:43:26 +0200
commitd5788f75a3db2423e6d8b795d5c5cb6654cde065 (patch)
tree420d99fae3b8c76f42465d3eec25fe2fb70f50d1 /Source/Core/VideoCommon/MainBase.cpp
parentb2349d24daa8219e239b046cb17d2c809ca291ec (diff)
parentd31bed8b79a1266d7ac9c7c6f0e45c20d36aaf4c (diff)
Merge pull request #2533 from degasus/syncgpu
Fifo: Rewrite SyncGPU
Diffstat (limited to 'Source/Core/VideoCommon/MainBase.cpp')
-rw-r--r--Source/Core/VideoCommon/MainBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/MainBase.cpp b/Source/Core/VideoCommon/MainBase.cpp
index 96aa34de90..c92e7d5dab 100644
--- a/Source/Core/VideoCommon/MainBase.cpp
+++ b/Source/Core/VideoCommon/MainBase.cpp
@@ -245,9 +245,9 @@ void VideoBackendHardware::Video_GatherPipeBursted()
CommandProcessor::GatherPipeBursted();
}
-void VideoBackendHardware::Video_Sync()
+int VideoBackendHardware::Video_Sync(int ticks)
{
- FlushGpu();
+ return Fifo_Update(ticks);
}
void VideoBackendHardware::RegisterCPMMIO(MMIO::Mapping* mmio, u32 base)