Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Update MBlur.cpp
  • Loading branch information
Fire-Head committed Jun 29, 2020
1 parent d9cb958 commit 3b3324de380e14f17d533905dfe5af5ac6dba8db
Showing with 3 additions and 3 deletions.
  1. +3 −3 src/render/MBlur.cpp
@@ -52,7 +52,7 @@ CMBlur::MotionBlurOpen(RwCamera *cam)
if(pFrontBuffer)
MotionBlurClose();

#ifdef _WIN32
#ifndef LIBRW
extern void _GetVideoMemInfo(LPDWORD total, LPDWORD avaible);
DWORD total, avaible;

@@ -104,11 +104,11 @@ CMBlur::MotionBlurOpen(RwCamera *cam)
rect.h = RwRasterGetHeight(RwCameraGetRaster(cam));
}

#ifdef _WIN32
#ifndef LIBRW
_GetVideoMemInfo(&total, &avaible);
debug("Available video memory %d\n", avaible);
CreateImmediateModeData(cam, &rect);
#endif
CreateImmediateModeData(cam, &rect);
}
else
{

0 comments on commit 3b3324d

Please sign in to comment.