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
42 changed files with 857 additions and 1107 deletions

View File

@ -4,7 +4,7 @@
#include "../dll/dll.h"
#ifdef __LINUX__
#ifndef NO_OVERLAY
#ifdef EMU_OVERLAY
#include <imgui.h>
#include <impls/imgui_impl_opengl3.h>
@ -171,5 +171,5 @@ void OpenGLX_Hook::loadFunctions(decltype(glXSwapBuffers)* pfnglXSwapBuffers)
_glXSwapBuffers = pfnglXSwapBuffers;
}
#endif//NO_OVERLAY
#endif//EMU_OVERLAY
#endif//__LINUX__