Skip to content

Commit

Permalink
show message while filtering roms
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Sep 13, 2021
1 parent dad4941 commit d239103
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OPT_DEFS = -DBUILD_NAME=\"$(TARGET)\"
OPT_DEFS += -D$(TARGET)=1

# MAME終了時にメモリーがきちんと開放されたかチェックする(1==ON, 0==OFF)
OPT_DEFS += -DDEBUG_MAME_MEMORY_CHECK=0
OPT_DEFS += -DDEBUG_MAME_MEMORY_CHECK=1

#------------------------------------------------------------------------------
# Configurations
Expand Down
2 changes: 1 addition & 1 deletion src/psp/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ void Draw_All(void)
{
char memInfo[64];
sprintf(memInfo,"Free memory: %d KB",(end_size / (1024)) );
psp_print(300, 10, setting.color[3], memInfo);
psp_print(330, 0, setting.color[3], memInfo);
}
#endif //(1==MEMORY_CHECK)

Expand Down
2 changes: 2 additions & 0 deletions src/psp/pspmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ int main(int argc, char *argv[])
load_menu_bg();
bgbright_change();

if (setting.rom_filter == 1)
psp_print(10, 10, setting.color[3], "Filtering list of ROMs...");
Get_DriverList(setting.rom_filter);

while (psp_loop)
Expand Down

0 comments on commit d239103

Please sign in to comment.