Fifo: Get rid of undefined global
This declaration doesn't have a matching implementation so it can be removed entirely.
This commit is contained in:
parent
32ce2be2bf
commit
488e7bd46a
|
@ -4,7 +4,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <atomic>
|
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
|
|
||||||
|
@ -13,8 +12,6 @@ class PointerWrap;
|
||||||
namespace Fifo
|
namespace Fifo
|
||||||
{
|
{
|
||||||
|
|
||||||
extern std::atomic<u8*> g_video_buffer_write_ptr_xthread;
|
|
||||||
|
|
||||||
void Init();
|
void Init();
|
||||||
void Shutdown();
|
void Shutdown();
|
||||||
void Prepare(); // Must be called from the CPU thread.
|
void Prepare(); // Must be called from the CPU thread.
|
||||||
|
|
Loading…
Reference in New Issue