From 488e7bd46a2504fc763d65ca5151b66cd83e97f9 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 23 Jan 2016 23:40:30 -0500 Subject: [PATCH] Fifo: Get rid of undefined global This declaration doesn't have a matching implementation so it can be removed entirely. --- Source/Core/VideoCommon/Fifo.h | 3 --- 1 file changed, 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 #include #include "Common/CommonTypes.h" @@ -13,8 +12,6 @@ class PointerWrap; namespace Fifo { -extern std::atomic g_video_buffer_write_ptr_xthread; - void Init(); void Shutdown(); void Prepare(); // Must be called from the CPU thread.