Skip to content

Commit e193691

Browse files
committed
Misc. fixes.
1 parent 2913d24 commit e193691

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace PokemonAutomation{
2525
const bool IS_BETA_VERSION = true;
2626
const int PROGRAM_VERSION_MAJOR = 0;
2727
const int PROGRAM_VERSION_MINOR = 51;
28-
const int PROGRAM_VERSION_PATCH = 5;
28+
const int PROGRAM_VERSION_PATCH = 6;
2929

3030
const std::string PROGRAM_VERSION_BASE =
3131
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/CommonTools/Async/InterruptableCommands.tpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,8 @@ void AsyncCommandSession<ControllerType>::thread_loop(){
159159
current = m_current.get();
160160
}
161161
try{
162-
// cout << "start" << endl;
163162
current->commands(current->context);
164163
current->context.wait_for_all_requests();
165-
// cout << "stop" << endl;
166164
}catch (OperationCancelledException&){}
167165

168166
// Destroy the CommandSet outside the lock.

SerialPrograms/Source/Controllers/ControllerConnection.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class ControllerConnection{
4848
void set_status(const std::string& text);
4949
void declare_ready(const std::map<ControllerType, std::set<ControllerFeature>>& controllers);
5050

51+
5152
private:
5253
// void signal_pre_not_ready();
5354
void signal_post_ready(const std::map<ControllerType, std::set<ControllerFeature>>& controllers);

SerialPrograms/Source/Controllers/ControllerSession.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,7 @@ void ControllerSession::post_connection_ready(
375375

376376
signal_controller_changed(selected_controller, available_controllers);
377377
signal_ready_changed(ready);
378+
signal_status_text_changed(status_text());
378379
}
379380
void ControllerSession::status_text_changed(
380381
ControllerConnection& connection,

SerialPrograms/Source/NintendoSwitch/Programs/NintendoSwitch_TurboA.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace NintendoSwitch{
1616

1717
TurboA_Descriptor::TurboA_Descriptor()
1818
: SingleSwitchProgramDescriptor(
19-
"PokemonSwSh:TurboA",
19+
"NintendoSwitch:TurboA",
2020
"Nintendo Switch", "Turbo A",
2121
"ComputerControl/blob/master/Wiki/Programs/NintendoSwitch/TurboA.md",
2222
"Endlessly mash A.",

0 commit comments

Comments
 (0)