spidey-decomp/DXinit.cpp

13 lines
186 B
C++

#include "DXinit.h"
static int gResolutionX;
static int gResolutionY;
// @NotOk
// Globals
void DXINIT_GetCurrentResolution(int *x, int *y)
{
*x = gResolutionX;
*y = gResolutionY;
}