mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-08 22:06:20 +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);
|
||||
#endif
|
||||
|
||||
EightBit::TestHarness<Configuration, Board> harness(configuration);
|
||||
harness.run();
|
||||
auto harness = std::make_shared<EightBit::TestHarness<Configuration, Board>>(configuration);
|
||||
harness->run();
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user