Removed numeric (don't use iota anymore)
Also placed the include on the top of cpp file. Need to look into directinput and xinput hooks.merge-requests/28/head
parent
a08c8102a9
commit
d646f61582
|
@ -6,7 +6,7 @@
|
||||||
#include <imgui.h>
|
#include <imgui.h>
|
||||||
#include <impls/imgui_impl_win32.h>
|
#include <impls/imgui_impl_win32.h>
|
||||||
|
|
||||||
#include <numeric> // iota
|
#include "../dll/dll.h"
|
||||||
|
|
||||||
extern LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
extern LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
|
@ -301,8 +301,6 @@ void Steam_Overlay::OverlayProc( int width, int height )
|
||||||
//ImGui::ShowDemoWindow();
|
//ImGui::ShowDemoWindow();
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "../dll/dll.h"
|
|
||||||
|
|
||||||
void Steam_Overlay::RunCallbacks()
|
void Steam_Overlay::RunCallbacks()
|
||||||
{
|
{
|
||||||
if (overlay_state_changed)
|
if (overlay_state_changed)
|
||||||
|
|
Loading…
Reference in New Issue