mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed last commit.
This commit is contained in:
parent
cfed7afd02
commit
f513692a08
2 changed files with 3 additions and 3 deletions
|
@ -92,7 +92,7 @@ CVAR(Bool, disableautoload, false, CVAR_ARCHIVE | CVAR_NOINITCALL | CVAR_GLOBALC
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
static bool grab_mouse;
|
||||
bool grab_mouse;
|
||||
|
||||
void mouseGrabInput(bool grab)
|
||||
{
|
||||
|
|
|
@ -128,10 +128,10 @@ void G_AddExternalSearchPaths(TArray<FString> &searchpaths)
|
|||
{
|
||||
// 3D Realms Anthology
|
||||
char buf[PATH_MAX];
|
||||
bufsize = sizeof(buf);
|
||||
DWORD bufsize = sizeof(buf);
|
||||
if (Paths_ReadRegistryValue(entry.regPath, entry.regKey, buf, &bufsize))
|
||||
{
|
||||
if (!entry.subpaths) AddSearchPath(buf);
|
||||
if (!entry.subpaths) AddSearchPath(searchpaths, buf);
|
||||
else
|
||||
{
|
||||
FString path;
|
||||
|
|
Loading…
Reference in a new issue