mirror of
https://github.com/libretro/RetroArch
synced 2025-03-24 04:44:02 +00:00
(Xbox 1) Make some variables non-static
This commit is contained in:
parent
07c6ff5666
commit
a7fe9aa50a
@ -299,7 +299,7 @@ static void *xdk_d3d_init(const video_info_t *video, const input_driver_t **inpu
|
||||
d3d->d3d_render_device->CreateVertexBuffer(4 * sizeof(DrawVerticeFormats),
|
||||
D3DUSAGE_WRITEONLY, D3DFVF_CUSTOMVERTEX, D3DPOOL_MANAGED, &d3d->vertex_buf);
|
||||
|
||||
static const DrawVerticeFormats init_verts[] = {
|
||||
const DrawVerticeFormats init_verts[] = {
|
||||
{ -1.0f, -1.0f, 1.0f, 0.0f, 1.0f },
|
||||
{ 1.0f, -1.0f, 1.0f, 1.0f, 1.0f },
|
||||
{ -1.0f, 1.0f, 1.0f, 0.0f, 0.0f },
|
||||
@ -444,7 +444,7 @@ static bool xdk_d3d_frame(void *data, const void *frame,
|
||||
|
||||
if(fps_enable)
|
||||
{
|
||||
static MEMORYSTATUS stat;
|
||||
MEMORYSTATUS stat;
|
||||
GlobalMemoryStatus(&stat);
|
||||
|
||||
//Output memory usage
|
||||
|
Loading…
x
Reference in New Issue
Block a user