pause: okay, I think this should fix appveyor builds

This commit is contained in:
somewhatlurker
2019-10-21 14:26:14 +11:00
parent af7140b9e5
commit b4ee82a643
2 changed files with 6 additions and 4 deletions
@@ -18,8 +18,10 @@ namespace TLAC::Components
unsigned int Pause::mainMenuPos = 0;
unsigned int Pause::menuSet = MENUSET_MAIN;
std::chrono::time_point<std::chrono::high_resolution_clock> Pause::menuItemSelectTime;
std::vector<uint8_t> Pause::origAetMovOp = {};
std::vector<uint8_t> Pause::origFramespeedOp = {};
std::vector<uint8_t> Pause::origAetMovOp;
uint8_t* Pause::aetMovPatchAddress = (uint8_t*)0x1401703b3;
std::vector<uint8_t> Pause::origFramespeedOp;
uint8_t* Pause::framespeedPatchAddress = (uint8_t*)0x140192D50;
std::vector<bool> Pause::streamPlayStates;
bool(*divaGiveUpFunc)(void*) = (bool(*)(void* cls))GIVEUP_FUNC_ADDRESS;
InputState* Pause::inputState;
@@ -35,10 +35,10 @@ namespace TLAC::Components
static void saveOldPatchOps();
static std::vector<uint8_t> origAetMovOp;
static constexpr uint8_t* aetMovPatchAddress = (uint8_t*)0x1401703b3;
static uint8_t* aetMovPatchAddress;
static std::vector<uint8_t> origFramespeedOp;
static constexpr uint8_t* framespeedPatchAddress = (uint8_t*)0x140192D50;
static uint8_t* framespeedPatchAddress;
static bool hookedGiveUpFunc(void* cls);