mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-29 07:30:14 +00:00
Fix crash due to limited stack space.
This commit is contained in:
parent
712be312ef
commit
e8dd92f0ae
@ -14,8 +14,8 @@ int main(int argc, char* argv[]) {
|
|||||||
configuration.setDebugMode(true);
|
configuration.setDebugMode(true);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
EightBit::TestHarness<Configuration, Board> harness(configuration);
|
auto harness = std::make_shared<EightBit::TestHarness<Configuration, Board>>(configuration);
|
||||||
harness.run();
|
harness->run();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user