mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 02:40:26 +01:00
24 lines
537 B
C++
Executable File
24 lines
537 B
C++
Executable File
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
#define __STDC_LIMIT_MACROS 1
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "SDL.h"
|
|
#include <Engine/Base/Types.h>
|
|
#include <Engine/Base/Assert.h>
|
|
|
|
// !!! FIXME: can we move this one function somewhere else?
|
|
|
|
ULONG DetermineDesktopWidth(void)
|
|
{
|
|
const int dpy = 0; // !!! FIXME: add a cvar for this?
|
|
SDL_DisplayMode mode;
|
|
const int rc = SDL_GetDesktopDisplayMode(dpy, &mode);
|
|
ASSERT(rc == 0);
|
|
return(mode.w);
|
|
} // DetermineDesktopWidth
|
|
|
|
// end of SDLAdapter.cpp ...
|
|
|
|
|