-
Notifications
You must be signed in to change notification settings - Fork 1
Database #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Database #20
Conversation
|
For the moment I added the automatic load of the quirks depending on the platform, and some buttons with which you can choose the platform variations to run the rom (each variation can change the quirks). Let me know if there is something more |
|
Awesome. I will review this once I have time again |
|
|
||
| CLAY_TEXT(CLAY_STRING("Settings"), CLAY_TEXT_CONFIG({ .textColor = {0, 0, 0, 255}, .fontSize = 24 })); | ||
|
|
||
| if (this->selectedPlatformId == nullptr || std::find(programPlatforms.begin(), programPlatforms.end(), *this->selectedPlatformId) == programPlatforms.end()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why but there is a seg fault from this line. Wll upload a video soon
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was trying to test whether clicking the platform on one rom would change the settings on another rom. Because it should not affect the others and only the rom it is for. But when I was trying this kept happening
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2025-09-16.10-53-54.mp4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like it was due to this row
this->selectedPlatformId = &programPlatforms.at(0);I replaced it with this row and it looks like it's resolved.
this->selectedPlatformId = new std::string(programPlatforms.at(0));Let me know if you notice this again.
|
Sorry I have been very busy 😭 |
Closes #12