diff --git a/HUD/DisplayHelpTextThisFrame.md b/HUD/DisplayHelpTextThisFrame.md index 79b321053..bbeb5f060 100644 --- a/HUD/DisplayHelpTextThisFrame.md +++ b/HUD/DisplayHelpTextThisFrame.md @@ -5,24 +5,13 @@ ns: HUD ```c // 0x960C9FF8F616E41C 0x18E3360A -void DISPLAY_HELP_TEXT_THIS_FRAME(char* message, BOOL p1); +void DISPLAY_HELP_TEXT_THIS_FRAME(char* pTextLabel, BOOL bCurvedWindow); ``` -``` -The messages are localized strings. -Examples: -"No_bus_money" -"Enter_bus" -"Tour_help" -"LETTERS_HELP2" -"Dummy" -**The bool appears to always be false (if it even is a bool, as it's represented by a zero)** --------- -p1 doesn't seem to make a difference, regardless of the state it's in. -picture of where on the screen this is displayed? -``` +Shows a help message for one frame. +Do note that this message doesn't get added to the Pause Menu info section. ## Parameters -* **message**: -* **p1**: +* **pTextLabel**: Text label for this message. +* **bCurvedWindow**: Unused parameter.