A few improvements to the overlay merge request.

NO_OVERLAY define becomes EMU_OVERLAY which enables the overlay instead of disabling it.

disable_overlay.txt moved to steam_settings.
This commit is contained in:
Mr_Goldberg 2020-01-19 12:55:14 -05:00
parent ffdaf72597
commit db2a803cf7
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
42 changed files with 857 additions and 1107 deletions

View file

@ -2,7 +2,7 @@
#define __INCLUDED_OPENGL_HOOK_H__
#include "../Base_Hook.h"
#ifndef NO_OVERLAY
#ifdef EMU_OVERLAY
class OpenGL_Hook : public Base_Hook
{
@ -38,5 +38,5 @@ public:
void loadFunctions(wglSwapBuffers_t pfnwglSwapBuffers);
};
#endif//NO_OVERLAY
#endif//EMU_OVERLAY
#endif//__INCLUDED_OPENGL_HOOK_H__