Skip to content

Commit

Permalink
Specific pce changes
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius committed Jun 24, 2024
1 parent 118ef77 commit 660e7cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion platforms/shared/desktop/gui_filedialogs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
void gui_file_dialog_open_rom(void)
{
nfdchar_t *outPath;
nfdfilteritem_t filterItem[1] = { { "ROM Files", "col,cv,rom,bin,zip" } };
nfdfilteritem_t filterItem[1] = { { "ROM Files", "pce,rom,bin,zip" } };
nfdresult_t result = NFD_OpenDialog(&outPath, filterItem, 1, config_emulator.last_open_path.c_str());
if (result == NFD_OKAY)
{
Expand Down
6 changes: 3 additions & 3 deletions platforms/shared/desktop/gui_menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -580,13 +580,13 @@ static void menu_debug(void)

ImGui::MenuItem("Show Disassembler", "", &config_debug.show_disassembler, config_debug.debug);

ImGui::MenuItem("Show Z80 Status", "", &config_debug.show_processor, config_debug.debug);
ImGui::MenuItem("Show HuC6280 Status", "", &config_debug.show_processor, config_debug.debug);

ImGui::MenuItem("Show Memory Editor", "", &config_debug.show_memory, config_debug.debug);

ImGui::MenuItem("Show VRAM Viewer", "", &config_debug.show_video, config_debug.debug);
ImGui::MenuItem("Show HuC6270 Viewer", "", &config_debug.show_video, config_debug.debug);

ImGui::MenuItem("Show VRAM Registers", "", &config_debug.show_video_registers, config_debug.debug);
ImGui::MenuItem("Show HuC6270 Registers", "", &config_debug.show_video_registers, config_debug.debug);

ImGui::Separator();

Expand Down

0 comments on commit 660e7cd

Please sign in to comment.