mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
Small clean up to InfoWindow and fix for Summarize_Drives()
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3299 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
81354ea368
commit
71e895ddf7
@ -1200,6 +1200,10 @@
|
|||||||
RelativePath=".\src\ISOFile.h"
|
RelativePath=".\src\ISOFile.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\Src\Summarize.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\src\main.cpp"
|
RelativePath=".\src\main.cpp"
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include "Core.h"
|
#include "Core.h"
|
||||||
#include "ConfigManager.h"
|
#include "ConfigManager.h"
|
||||||
#include "CDUtils.h"
|
#include "CDUtils.h"
|
||||||
|
#include "Summarize.h"//This holds all the summarize functions
|
||||||
|
|
||||||
BEGIN_EVENT_TABLE(wxInfoWindow, wxWindow)
|
BEGIN_EVENT_TABLE(wxInfoWindow, wxWindow)
|
||||||
EVT_SIZE( wxInfoWindow::OnEvent_Window_Resize)
|
EVT_SIZE( wxInfoWindow::OnEvent_Window_Resize)
|
||||||
@ -47,15 +48,15 @@ wxInfoWindow::~wxInfoWindow()
|
|||||||
// On Disposal
|
// On Disposal
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "Summarize.h";//Just used this to keep stuff clean.
|
|
||||||
|
|
||||||
void wxInfoWindow::Init_ChildControls()
|
void wxInfoWindow::Init_ChildControls()
|
||||||
{
|
{
|
||||||
std::string Info;
|
std::string Info;
|
||||||
Info = StringFromFormat("Dolphin Revision: %s", SVN_REV_STR);
|
Info = StringFromFormat("Dolphin Revision: %s", SVN_REV_STR);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Info.append(StringFromFormat(
|
Info.append(StringFromFormat(
|
||||||
"\n\n%s\n\n%s\n%s\n\n%s\n\n",
|
"\n\n%s\n%s\n%s\n\n%s\n\n",
|
||||||
Summarize_Drives().c_str(),
|
Summarize_Drives().c_str(),
|
||||||
Summarize_CPU().c_str(),
|
Summarize_CPU().c_str(),
|
||||||
Summarize_Plug().c_str(),
|
Summarize_Plug().c_str(),
|
||||||
|
@ -109,15 +109,17 @@ std::string Summarize_CPU()
|
|||||||
std::string Summarize_Drives()
|
std::string Summarize_Drives()
|
||||||
{
|
{
|
||||||
char ** drives = cdio_get_devices();
|
char ** drives = cdio_get_devices();
|
||||||
|
std::string drive;
|
||||||
for (int i = 0; drives[i] != NULL && i < 24; i++)
|
for (int i = 0; drives[i] != NULL && i < 24; i++)
|
||||||
{
|
{
|
||||||
|
|
||||||
return StringFromFormat(
|
drive += StringFromFormat(
|
||||||
"CD/DVD Drive%d: %s",
|
"CD/DVD Drive%d: %s\n",
|
||||||
i+1,
|
i+1,
|
||||||
drives[i]
|
drives[i]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
return drive;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //__SUMMARIZE_H__
|
#endif //__SUMMARIZE_H__
|
Loading…
x
Reference in New Issue
Block a user