diff --git a/src/main/main.cpp b/src/main/main.cpp index c53f93b..7986e0d 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -637,7 +637,7 @@ int main(int argc, char** argv) { banjo::register_bk_patches(); recomputil::init_extended_actor_data(); - recompinput::players::set_max_number_of_players(4); + recompinput::players::set_single_player_mode(true); banjo::init_config(); diff --git a/src/main/theme.cpp b/src/main/theme.cpp index ad655e5..513b6bd 100644 --- a/src/main/theme.cpp +++ b/src/main/theme.cpp @@ -5,8 +5,8 @@ void recomptheme::set_custom_theme() { recompui::theme::set_theme_color(recompui::theme::color::Background1, recompui::Color{10, 10, 11, 255}); recompui::theme::set_theme_color(recompui::theme::color::Background2, recompui::Color{19, 20, 21, 255}); recompui::theme::set_theme_color(recompui::theme::color::Background3, recompui::Color{27, 27, 29, 255}); - recompui::theme::set_theme_color(recompui::theme::color::BGOverlay, recompui::Color{199, 200, 204, 26}); - recompui::theme::set_theme_color(recompui::theme::color::ModalOverlay, recompui::Color{10, 10, 11, 229}); + recompui::theme::set_theme_color(recompui::theme::color::BGOverlay, recompui::Color{199, 200, 204, 26}); // actually the overlay for the modal + recompui::theme::set_theme_color(recompui::theme::color::ModalOverlay, recompui::Color{10, 10, 11, 242}); // actually the background color of the modal itself recompui::theme::set_theme_color(recompui::theme::color::BGShadow, recompui::Color{0, 0, 0, 89}); recompui::theme::set_theme_color(recompui::theme::color::BGShadow2, recompui::Color{10, 10, 11, 184}); recompui::theme::set_theme_color(recompui::theme::color::Text, recompui::Color{242, 242, 242, 255});