mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2026-04-27 20:51:40 +00:00
Linux build fixes.
This commit is contained in:
parent
2b9769a2e9
commit
63597abbde
3 changed files with 5 additions and 2 deletions
2
lib/rt64
2
lib/rt64
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0ca92eeb6c2f58ce3581c65f87f7261b8ac0fea0
|
Subproject commit 1db8c347caa9dd356050777ac79a81f1ccfa462b
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
#include "ui_slider.h"
|
#include "ui_slider.h"
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
#include <charconv>
|
#include <charconv>
|
||||||
|
|
||||||
namespace recompui {
|
namespace recompui {
|
||||||
|
|
|
||||||
|
|
@ -326,7 +326,9 @@ void ModMenu::create_mod_list() {
|
||||||
|
|
||||||
mod_entry_middles.resize(mod_entry_buttons.size());
|
mod_entry_middles.resize(mod_entry_buttons.size());
|
||||||
|
|
||||||
mod_selected(0);
|
if (!mod_details.empty()) {
|
||||||
|
mod_selected(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ModMenu::ModMenu(Element *parent) : Element(parent) {
|
ModMenu::ModMenu(Element *parent) : Element(parent) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue