mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 13:29:48 +00:00
13 lines
186 B
C++
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;
|
|
}
|