Fixing GCC 15 build

This commit is contained in:
Rodrigo Alfonso 2025-07-28 05:28:00 -03:00
parent 9447cdfff3
commit 6e5646e96b
2 changed files with 4 additions and 4 deletions

View File

@ -25,11 +25,11 @@ std::string getNumberInput();
std::string getPasswordInput();
std::string getDomainInput();
std::string getTextInput(std::string& field,
unsigned int maxChars,
u32 maxChars,
std::string inputName,
std::vector<DefaultValue> defaultValues);
std::string getInput(std::string& field,
unsigned int maxChars,
u32 maxChars,
std::string inputName,
std::vector<std::vector<std::string>> rows,
std::vector<std::vector<std::string>> altRows,

View File

@ -193,7 +193,7 @@ void connect() {
// (5) Connect to a server
LinkWireless::Server servers[LINK_WIRELESS_MAX_SERVERS];
u32 serverCount;
Link::u32 serverCount;
linkWireless->getServers(servers, serverCount, animate);
CHECK_ERRORS("Search failed :(")
@ -330,7 +330,7 @@ void messageLoop() {
// (7) Receive data
LinkWireless::Message messages[LINK_WIRELESS_QUEUE_SIZE];
u32 receivedCount;
Link::u32 receivedCount;
linkWireless->receive(messages, receivedCount);
for (u32 i = 0; i < receivedCount; i++) {
auto message = messages[i];