mirror of
https://github.com/afska/gba-link-connection.git
synced 2026-04-26 02:02:25 -05:00
Fixing GCC 15 build
This commit is contained in:
parent
9447cdfff3
commit
6e5646e96b
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user