diff options
author | jbzdarkid <jbzdarkid@gmail.com> | 2018-11-09 10:08:03 -0800 |
---|---|---|
committer | jbzdarkid <jbzdarkid@gmail.com> | 2018-11-09 10:08:03 -0800 |
commit | 1f85741c8d12d9b1fbd55b29f334de572f9eea9b (patch) | |
tree | 098ec2630e40ed9f0a2fabf11f49f05111653bde /App | |
parent | c388759ed67b792201b99bf7d73d036c34b47d87 (diff) | |
download | witness-tutorializer-1f85741c8d12d9b1fbd55b29f334de572f9eea9b.tar.gz witness-tutorializer-1f85741c8d12d9b1fbd55b29f334de572f9eea9b.tar.bz2 witness-tutorializer-1f85741c8d12d9b1fbd55b29f334de572f9eea9b.zip |
Reading & writing to tutorial vault works!
Diffstat (limited to 'App')
-rw-r--r-- | App/Main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/App/Main.cpp b/App/Main.cpp index ab3e88a..6ebef7e 100644 --- a/App/Main.cpp +++ b/App/Main.cpp | |||
@@ -19,8 +19,8 @@ | |||
19 | #define IDT_RANDOMIZED 0x409 | 19 | #define IDT_RANDOMIZED 0x409 |
20 | 20 | ||
21 | HWND hwndSeed, hwndRandomize; | 21 | HWND hwndSeed, hwndRandomize; |
22 | int panel = 0x18AF; | 22 | // int panel = 0x18AF; |
23 | // int panel = 0x33D4; | 23 | int panel = 0x33D4; |
24 | std::shared_ptr<Panel> _panel; | 24 | std::shared_ptr<Panel> _panel; |
25 | std::shared_ptr<Randomizer> randomizer = std::make_shared<Randomizer>(); | 25 | std::shared_ptr<Randomizer> randomizer = std::make_shared<Randomizer>(); |
26 | 26 | ||
@@ -94,7 +94,7 @@ LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) | |||
94 | _panel->Write(panel); | 94 | _panel->Write(panel); |
95 | break; | 95 | break; |
96 | case IDC_DUMP: | 96 | case IDC_DUMP: |
97 | // _panel->Serialize(); | 97 | _panel->Serialize(); |
98 | break; | 98 | break; |
99 | } | 99 | } |
100 | } | 100 | } |