Home
last modified time | relevance | path

Searched refs:get_kc_type (Results 1 – 19 of 19) sorted by relevance

/dports/emulators/kcemu/KCemu-0.5.1/src/kc/
H A Dmod_rom1.cc52 switch (Preferences::instance()->get_kc_type()) in ModuleROM1()
94 switch (Preferences::instance()->get_kc_type()) in ~ModuleROM1()
146 switch (Preferences::instance()->get_kc_type()) in set_romdi()
H A Dmod_boot.cc37 switch (Preferences::instance()->get_kc_type()) in ModuleBOOT()
64 switch (Preferences::instance()->get_kc_type()) in ~ModuleBOOT()
H A Dkc.cc1173 switch (Preferences::instance()->get_kc_type()) in WinMain()
1337 switch (Preferences::instance()->get_kc_type()) in WinMain()
1452 if (Preferences::instance()->get_kc_type() & KC_TYPE_85_2_CLASS) in WinMain()
1477 if ((Preferences::instance()->get_kc_type() == KC_TYPE_85_1) || in WinMain()
1478 (Preferences::instance()->get_kc_type() == KC_TYPE_87) || in WinMain()
1479 (Preferences::instance()->get_kc_type() == KC_TYPE_LC80) || in WinMain()
1480 (Preferences::instance()->get_kc_type() == KC_TYPE_Z1013)) in WinMain()
H A Dmod_320k.cc47 if (Preferences::instance()->get_kc_type() == KC_TYPE_87) in Module320k()
76 if (Preferences::instance()->get_kc_type() == KC_TYPE_87) in ~Module320k()
H A Dmod_r64.cc151 switch (Preferences::instance()->get_kc_type()) in in_out()
H A Dmod_list.cc190 kc_type_t kc_type = Preferences::instance()->get_kc_type(); in ModuleList()
301 bool romdi_handling = (Preferences::instance()->get_kc_type() == KC_TYPE_87); in ModuleList()
704 if (!(Preferences::instance()->get_kc_type() & KC_TYPE_85_2_CLASS)) in init_modules_autostart()
H A Dmodule.cc151 if ((a >= 0xf8) && (Preferences::instance()->get_kc_type() & KC_TYPE_85_2_CLASS)) in out()
H A Dtape.cc87 if (Preferences::instance()->get_kc_type() == KC_TYPE_Z1013) in execute()
106 switch (Preferences::instance()->get_kc_type()) in execute()
1130 switch (Preferences::instance()->get_kc_type()) in do_play()
1520 switch (Preferences::instance()->get_kc_type()) in tape_signal()
H A Dwav.cc473 if (Preferences::instance()->get_kc_type() & KC_TYPE_85_2_CLASS) in do_play()
H A Dmemory4.cc38 if (Preferences::instance()->get_kc_type() == KC_TYPE_85_4) in Memory4()
H A Dmemory.cc515 switch (Preferences::instance()->get_kc_type()) in loadRAM()
/dports/emulators/kcemu/KCemu-0.5.1/src/kc/prefs/
H A Dprefs.cc61 …if ((_result == NULL) && (system->get_kc_type() == _type) && (system->get_kc_variant() == _variant… in operator ()()
119 sys_profile->set_int_value(PROFILE_KEY_SYSTEM, (*it)->get_kc_type()); in load_system_profiles()
120 usr_profile->set_int_value(PROFILE_KEY_SYSTEM, (*it)->get_kc_type()); in load_system_profiles()
131 _usr_profiles_by_type[(*it)->get_kc_type()] = usr_profile; in load_system_profiles()
586 Preferences::get_kc_type(void) { in get_kc_type() function in Preferences
587 return _current_system_type->get_kc_type(); in get_kc_type()
H A Dtypes.cc157 EmulationType::get_kc_type(void) const { in get_kc_type() function in EmulationType
439 SystemType::get_kc_type(void) const in get_kc_type() function in SystemType
441 return _emulation_type.get_kc_type(); in get_kc_type()
952 if ((*it)->get_kc_type() != kc_type) in get_system_type()
972 kc_type_t kc_type = (*it)->get_kc_type(); in show_types()
/dports/emulators/kcemu/KCemu-0.5.1/src/ui/gtk/
H A Dmodule.cc91 kc_type_t type = Preferences::instance()->get_kc_type(); in create_menu()
97 if (((*it)->get_kc_type() & type) == 0) in create_menu()
254 kc_type_t type = Preferences::instance()->get_kc_type(); in init_device_1()
316 kc_type_t type = Preferences::instance()->get_kc_type(); in init2()
H A Dui_gtk.cc840 switch (Preferences::instance()->get_kc_type()) { in create_ui()
883 Preferences::instance()->get_kc_type())); in create_ui()
H A Doptions.cc953 if (type->get_kc_type() != kc_type) in apply_system_variant()
1147 gtk_list_store_set(store, &iter, 0, (*it)->get_name(), 1, (*it)->get_kc_type(), -1); in get_system_list_model()
1182 kc_type_t mod_kc_type = (*it)->get_kc_type(); in get_modules_list_model()
/dports/emulators/kcemu/KCemu-0.5.1/include/kc/prefs/
H A Dtypes.h148 virtual kc_type_t get_kc_type(void) const;
254 virtual kc_type_t get_kc_type(void) const;
H A Dprefs.h100 virtual kc_type_t get_kc_type(void);
/dports/emulators/kcemu/KCemu-0.5.1/include/kc/
H A Dmod_list.h56 virtual kc_type_t get_kc_type() { return _type; } in get_kc_type() function