This code will replace background texture with simple red rectangle: #include "plugin_vc.h" #include "CSprite2d.h" using namespace plugin; class MyMenuBackground { public: static void __stdcall MyDrawMenuBackground(CRect &rect, CRGBA &color) { CSprite2d::DrawRect(rect, CRGBA(255, 0, 0, color.alpha)); } MyMenuBackground() { patch::RedirectCall(0x4A272A, MyDrawMenuBackground); patch::RedirectCall(0x4A2CB2, MyDrawMenuBackground); } } myPlugin;