about summary refs log tree commit diff stats
path: root/App
diff options
context:
space:
mode:
authorjbzdarkid <jbzdarkid@gmail.com>2018-11-09 10:08:03 -0800
committerjbzdarkid <jbzdarkid@gmail.com>2018-11-09 10:08:03 -0800
commit1f85741c8d12d9b1fbd55b29f334de572f9eea9b (patch)
tree098ec2630e40ed9f0a2fabf11f49f05111653bde /App
parentc388759ed67b792201b99bf7d73d036c34b47d87 (diff)
downloadwitness-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.cpp6
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
21HWND hwndSeed, hwndRandomize; 21HWND hwndSeed, hwndRandomize;
22int panel = 0x18AF; 22// int panel = 0x18AF;
23// int panel = 0x33D4; 23int panel = 0x33D4;
24std::shared_ptr<Panel> _panel; 24std::shared_ptr<Panel> _panel;
25std::shared_ptr<Randomizer> randomizer = std::make_shared<Randomizer>(); 25std::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 }