Skip to content

Commit 455c479

Browse files
committed
Version #
1 parent 7d7d189 commit 455c479

File tree

2 files changed

+4
-4
lines changed

2 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 = 12;
28+
const int PROGRAM_VERSION_PATCH = 13;
2929

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

SerialPrograms/Source/NintendoSwitch/DevPrograms/TestProgramComputer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,15 +275,15 @@ void TestProgramComputer::program(ProgramEnvironment& env, CancellableScope& sco
275275
using namespace std::chrono_literals;
276276

277277

278+
#if 0
278279
ClientSocket socket;
279280
socket.connect("192.168.1.66", 6000);
280281
// socket.connect("192.168.1.66", 6000);
281282

282-
283-
284283
scope.wait_for(std::chrono::seconds(60));
284+
#endif
285285

286-
#if 0
286+
#if 1
287287
int* ptr = nullptr;
288288
cout << ptr[0] << endl;
289289
#endif

0 commit comments

Comments
 (0)