🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Mouse appearing behind Text printing on the screen

Started by
0 comments, last by FnxBender 4 years, 4 months ago

Well I'm making a hook for ddraw, but my mouse always appears behind the text printed on the screen.

My text is on the endscene

HRESULT MyHook::end_scene(IDirect3DDevice7** mscene)
{
   int x = MyHook::Getx();
   int y = MyHook::Gety();

   MyHook::print_screen("Test Message", x, y, 255, 205, 210, 214);
 
   return S_OK;
}

Is there any way to fix this?

This topic is closed to new replies.

Advertisement