summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-01-23 23:40:30 -0500
committerLioncash <mathew1800@gmail.com>2016-01-25 05:24:03 -0500
commit488e7bd46a2504fc763d65ca5151b66cd83e97f9 (patch)
tree57b32b13d9640977b3270fa055865dcc9da2a1eb /Source/Core
parent32ce2be2bfc74f0b395800328c494b423480358d (diff)
Fifo: Get rid of undefined global
This declaration doesn't have a matching implementation so it can be removed entirely.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/Fifo.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Fifo.h b/Source/Core/VideoCommon/Fifo.h
index 92cfc044af..68b9ac2eee 100644
--- a/Source/Core/VideoCommon/Fifo.h
+++ b/Source/Core/VideoCommon/Fifo.h
@@ -4,7 +4,6 @@
#pragma once
-#include <atomic>
#include <cstddef>
#include "Common/CommonTypes.h"
@@ -13,8 +12,6 @@ class PointerWrap;
namespace Fifo
{
-extern std::atomic<u8*> g_video_buffer_write_ptr_xthread;
-
void Init();
void Shutdown();
void Prepare(); // Must be called from the CPU thread.