Example #1
0
static void
psp_cheat_menu_cheat_list()
{
  int cheat_id;

  for (cheat_id = 0; cheat_id < DVE_MAX_CHEAT; cheat_id++) {
    DVE_cheat_t* a_cheat = &DVE.dve_cheat[cheat_id];
    if (a_cheat->type == DVE_CHEAT_NONE) break;
  }
  if (cheat_id >= DVE_MAX_CHEAT) {
    cheat_id = cur_cheat;
  }
  psp_menu_cheat_list(cheat_id);
}
Example #2
0
static void
psp_cheat_menu_cheat_list()
{
  int cheat_id;

  for (cheat_id = 0; cheat_id < CPC_MAX_CHEAT; cheat_id++) {
    CPC_cheat_t* a_cheat = &CPC.cpc_cheat[cheat_id];
    if (a_cheat->type == CPC_CHEAT_NONE) break;
  }
  if (cheat_id >= CPC_MAX_CHEAT) {
    cheat_id = cur_cheat;
  }
  psp_menu_cheat_list(cheat_id);
}
Example #3
0
static void
psp_cheat_menu_cheat_list()
{
  int cheat_id;

  for (cheat_id = 0; cheat_id < MSX_MAX_CHEAT; cheat_id++) {
    MSX_cheat_t* a_cheat = &MSX.msx_cheat[cheat_id];
    if (a_cheat->type == MSX_CHEAT_NONE) break;
  }
  if (cheat_id >= MSX_MAX_CHEAT) {
    cheat_id = cur_cheat;
  }
  psp_menu_cheat_list(cheat_id);
}