Fix windows build
This commit is contained in:
@@ -342,7 +342,7 @@ void ArchipelagoClient::SendGameWon() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ArchipelagoClient::SendMessage(const std::string message) {
|
void ArchipelagoClient::SendMessageToConsole(const std::string message) {
|
||||||
// local commands not implemented yet
|
// local commands not implemented yet
|
||||||
if(message.starts_with("/")) {
|
if(message.starts_with("/")) {
|
||||||
ArchipelagoConsole_SendMessage("Ship of Harkinian does not have any local commands yet.\nUse !help\" to see server commands instead", false);
|
ArchipelagoConsole_SendMessage("Ship of Harkinian does not have any local commands yet.\nUse !help\" to see server commands instead", false);
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ class ArchipelagoClient{
|
|||||||
void QueueExternalCheck(int64_t apLocation);
|
void QueueExternalCheck(int64_t apLocation);
|
||||||
|
|
||||||
void SendGameWon();
|
void SendGameWon();
|
||||||
void SendMessage(const std::string message);
|
void SendMessageToConsole(const std::string message);
|
||||||
void Poll();
|
void Poll();
|
||||||
|
|
||||||
std::unique_ptr<APClient> apClient;
|
std::unique_ptr<APClient> apClient;
|
||||||
|
|||||||
@@ -75,14 +75,14 @@ void ArchipelagoConsoleWindow::DrawElement() {
|
|||||||
keepFocus = false;
|
keepFocus = false;
|
||||||
}
|
}
|
||||||
if(ImGui::InputText("##AP_MessageField", textEntryBuf, 1023, ImGuiInputTextFlags_EnterReturnsTrue)) {
|
if(ImGui::InputText("##AP_MessageField", textEntryBuf, 1023, ImGuiInputTextFlags_EnterReturnsTrue)) {
|
||||||
ArchipelagoClient::GetInstance().SendMessage(std::string(textEntryBuf));
|
ArchipelagoClient::GetInstance().SendMessageToConsole(std::string(textEntryBuf));
|
||||||
textEntryBuf[0] = '\0';
|
textEntryBuf[0] = '\0';
|
||||||
keepFocus = true;
|
keepFocus = true;
|
||||||
}
|
}
|
||||||
//keepFocus = ImGui::IsItemActive();
|
//keepFocus = ImGui::IsItemActive();
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if(ImGui::Button("Send")) {
|
if(ImGui::Button("Send")) {
|
||||||
ArchipelagoClient::GetInstance().SendMessage(std::string(textEntryBuf));
|
ArchipelagoClient::GetInstance().SendMessageToConsole(std::string(textEntryBuf));
|
||||||
textEntryBuf[0] = '\0';
|
textEntryBuf[0] = '\0';
|
||||||
keepFocus = true;
|
keepFocus = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user