| 1096 | } |
| 1097 | |
| 1098 | void cFodder::GUI_Button_Draw(std::string pText, const size_t pY, const size_t pColorShadow, const size_t pColorPrimary) { |
| 1099 | std::transform(pText.begin(), pText.end(), pText.begin(), ::toupper); |
| 1100 | |
| 1101 | GUI_Render_Text_Centred(pText.c_str(), pY); |
| 1102 | |
| 1103 | GUI_Box_Draw(pColorShadow, pColorPrimary); |
| 1104 | } |
| 1105 | |
| 1106 | void cFodder::GUI_Box_Draw(const size_t pColorShadow, const size_t pColorPrimary) { |
| 1107 |