mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-14 02:27:21 -07:00
Bump LUS (#2855)
* Bump LUS * Ship -> LUS namespace change * z_scene_otr Ship -> LUS namespace
This commit is contained in:
parent
b166bdd3fc
commit
77987a42cf
209 changed files with 1134 additions and 1134 deletions
|
@ -1023,8 +1023,8 @@ void DrawCheckTrackerOptions(bool& open) {
|
|||
}
|
||||
|
||||
void InitCheckTracker() {
|
||||
Ship::AddWindow("Randomizer", "Check Tracker", DrawCheckTracker, CVarGetInteger("gCheckTrackerEnabled", 0) == 1);
|
||||
Ship::AddWindow("Randomizer", "Check Tracker Settings", DrawCheckTrackerOptions);
|
||||
LUS::AddWindow("Randomizer", "Check Tracker", DrawCheckTracker, CVarGetInteger("gCheckTrackerEnabled", 0) == 1);
|
||||
LUS::AddWindow("Randomizer", "Check Tracker Settings", DrawCheckTrackerOptions);
|
||||
Color_Background = CVarGetColor("gCheckTrackerBgColor", Color_Bg_Default);
|
||||
Color_Area_Incomplete_Main = CVarGetColor("gCheckTrackerAreaMainIncompleteColor", Color_Main_Default);
|
||||
Color_Area_Incomplete_Extra = CVarGetColor("gCheckTrackerAreaExtraIncompleteColor", Color_Area_Incomplete_Extra_Default);
|
||||
|
@ -1045,13 +1045,13 @@ void InitCheckTracker() {
|
|||
Color_Saved_Main = CVarGetColor("gCheckTrackerSavedMainColor", Color_Main_Default);
|
||||
Color_Saved_Extra = CVarGetColor("gCheckTrackerSavedExtraColor", Color_Saved_Extra_Default);
|
||||
|
||||
Ship::RegisterHook<Ship::ControllerRead>([](OSContPad* cont_pad) {
|
||||
LUS::RegisterHook<LUS::ControllerRead>([](OSContPad* cont_pad) {
|
||||
trackerButtonsPressed = cont_pad;
|
||||
});
|
||||
Ship::RegisterHook<Ship::LoadFile>([](uint32_t fileNum) {
|
||||
LUS::RegisterHook<LUS::LoadFile>([](uint32_t fileNum) {
|
||||
doInitialize = true;
|
||||
});
|
||||
Ship::RegisterHook<Ship::DeleteFile>([](uint32_t fileNum) {
|
||||
LUS::RegisterHook<LUS::DeleteFile>([](uint32_t fileNum) {
|
||||
Teardown();
|
||||
});
|
||||
LocationTable_Init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue