diff --git a/aegisub/src/dialog_about.cpp b/aegisub/src/dialog_about.cpp index 0b6a9ce25..7a3286af1 100644 --- a/aegisub/src/dialog_about.cpp +++ b/aegisub/src/dialog_about.cpp @@ -150,7 +150,7 @@ AboutScreen::AboutScreen(wxWindow *parent) wxTextCtrl *textctrl = new wxTextCtrl(this, -1, aboutString, wxDefaultPosition, wxSize(-1,200), wxTE_MULTILINE|wxTE_READONLY|wxBORDER_NONE); wxSizer *MainSizer = new wxBoxSizer(wxVERTICAL); - MainSizer->Add(new wxStaticBitmap(this, -1, GETIMAGE(splash_misc)), 0, wxCENTER, 0); + MainSizer->Add(new wxStaticBitmap(this, -1, GETIMAGE(splash)), 0, wxCENTER, 0); MainSizer->Add(new wxStaticLine(this, wxID_ANY), 0, wxEXPAND|wxALL, 0); MainSizer->Add(textctrl, 0, wxEXPAND|wxALL, 0); MainSizer->Add(new wxStaticLine(this, wxID_ANY), 0, wxEXPAND|wxALL, 0); diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index 594f3ac29..781430026 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -176,7 +176,7 @@ FrameMain::FrameMain (wxArrayString args) SetIcon(wxICON(wxicon)); #else wxIcon icon; - icon.CopyFromBitmap(GETIMAGE(wxicon_misc)); + icon.CopyFromBitmap(GETIMAGE(wxicon)); SetIcon(icon); #endif