We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dde281 commit bd92690Copy full SHA for bd92690
src/ui/UserInterface.cpp
@@ -17,7 +17,7 @@ UI::UserInterface::UserInterface(const std::string &fileName) {
17
18
this->emulator = std::make_shared<Core::Emulator>();
19
this->keyboard = std::make_shared<Keyboard>(this->emulator);
20
- this->window = std::make_unique<Window>("8bit", this->keyboard);
+ this->window = std::make_unique<Window>("8bit " + fileName, this->keyboard);
21
22
this->clock = std::make_shared<ClockModel>();
23
this->bus = std::make_shared<ValueModel>("Bus", 8);
0 commit comments