@@ -303,38 +303,39 @@ void show_main_menubar(iris::instance* iris) {
303303 ImGui::EndMenu ();
304304 }
305305 if (BeginMenu (" Tools" )) {
306- if (MenuItem (ICON_MS_LINE_START_CIRCLE " ImGui Demo" , NULL , &iris->show_imgui_demo ));
306+ if (MenuItem (ICON_MS_BUILD " ImGui Demo" , NULL , &iris->show_imgui_demo ));
307307
308308 ImGui::EndMenu ();
309309 }
310310 if (BeginMenu (" Debug" )) {
311311 SeparatorText (" EE" );
312312 // if (BeginMenu(ICON_MS_BUG_REPORT " EE")) {
313- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Control##ee" , NULL , &iris->show_ee_control ));
314- if (MenuItem (ICON_MS_LINE_START_CIRCLE " State##ee" , NULL , &iris->show_ee_state ));
315- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Logs##ee" , NULL , &iris->show_ee_logs ));
316- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Interrupts##ee" , NULL , &iris->show_ee_interrupts ));
313+ if (MenuItem (ICON_MS_SETTINGS " Control##ee" , NULL , &iris->show_ee_control ));
314+ if (MenuItem (ICON_MS_EDIT_NOTE " State##ee" , NULL , &iris->show_ee_state ));
315+ if (MenuItem (ICON_MS_TERMINAL " Logs##ee" , NULL , &iris->show_ee_logs ));
316+ if (MenuItem (ICON_MS_BOLT " Interrupts##ee" , NULL , &iris->show_ee_interrupts ));
317317
318318 // ImGui::EndMenu();
319319 // }
320320
321321 SeparatorText (" IOP" );
322322 // if (BeginMenu(ICON_MS_BUG_REPORT " IOP")) {
323- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Control##iop" , NULL , &iris->show_iop_control ));
324- if (MenuItem (ICON_MS_LINE_START_CIRCLE " State##iop" , NULL , &iris->show_iop_state ));
325- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Logs##iop" , NULL , &iris->show_iop_logs ));
326- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Interrupts##iop" , NULL , &iris->show_iop_interrupts ));
327- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Modules##iop" , NULL , &iris->show_iop_modules ));
323+ if (MenuItem (ICON_MS_SETTINGS " Control##iop" , NULL , &iris->show_iop_control ));
324+ if (MenuItem (ICON_MS_EDIT_NOTE " State##iop" , NULL , &iris->show_iop_state ));
325+ if (MenuItem (ICON_MS_TERMINAL " Logs##iop" , NULL , &iris->show_iop_logs ));
326+ if (MenuItem (ICON_MS_BOLT " Interrupts##iop" , NULL , &iris->show_iop_interrupts ));
327+ if (MenuItem (ICON_MS_EXTENSION " Modules##iop" , NULL , &iris->show_iop_modules ));
328328
329329 // ImGui::EndMenu();
330330 // }
331331
332332 Separator ();
333333
334- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Breakpoints" , NULL , &iris->show_breakpoints ));
335- if (MenuItem (ICON_MS_LINE_START_CIRCLE " GS debugger" , NULL , &iris->show_gs_debugger ));
336- if (MenuItem (ICON_MS_LINE_START_CIRCLE " SPU2 debugger" , NULL , &iris->show_spu2_debugger ));
337- if (MenuItem (ICON_MS_LINE_START_CIRCLE " Memory viewer" , NULL , &iris->show_memory_viewer ));
334+ if (MenuItem (ICON_MS_BUG_REPORT " Breakpoints" , NULL , &iris->show_breakpoints ));
335+ if (MenuItem (ICON_MS_BRUSH " GS debugger" , NULL , &iris->show_gs_debugger ));
336+ if (MenuItem (ICON_MS_MUSIC_NOTE " SPU2 debugger" , NULL , &iris->show_spu2_debugger ));
337+ if (MenuItem (ICON_MS_MEMORY " Memory viewer" , NULL , &iris->show_memory_viewer ));
338+ if (MenuItem (ICON_MS_VIEW_IN_AR " VU disassembler" , NULL , &iris->show_vu_disassembler ));
338339
339340 Separator ();
340341
@@ -353,13 +354,14 @@ void show_main_menubar(iris::instance* iris) {
353354 iris->show_gs_debugger = false ;
354355 iris->show_spu2_debugger = false ;
355356 iris->show_memory_viewer = false ;
357+ iris->show_vu_disassembler = false ;
356358 iris->show_breakpoints = false ;
357359 }
358360
359361 ImGui::EndMenu ();
360362 }
361363 if (BeginMenu (" Help" )) {
362- if (MenuItem (ICON_MS_LINE_START_CIRCLE " About" )) {
364+ if (MenuItem (ICON_MS_INFO " About" )) {
363365 iris->show_about_window = true ;
364366 }
365367
0 commit comments