mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
SFML on linux/osx now compiles from external (static)
removed HAVE_SFML ifdefs git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5101 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3dc3c1c3b3
commit
7de17cb9c2
9 changed files with 36 additions and 35 deletions
|
@ -16,15 +16,13 @@
|
|||
// http://code.google.com/p/dolphin-emu/
|
||||
|
||||
|
||||
// CFrame is the main parent window. Inside CFrame there is an m_Panel that is the parent for
|
||||
// the rendering window (when we render to the main window). In Windows the rendering window is
|
||||
// created by giving CreateWindow() m_Panel->GetHandle() as parent window and creating a new
|
||||
// child window to m_Panel. The new child window handle that is returned by CreateWindow() can
|
||||
// CFrame is the main parent window. Inside CFrame there is an m_Panel that is
|
||||
// the parent for the rendering window (when we render to the main window). In
|
||||
// Windows the rendering window is created by giving CreateWindow()
|
||||
// m_Panel->GetHandle() as parent window and creating a new child window to
|
||||
// m_Panel. The new child window handle that is returned by CreateWindow() can
|
||||
// be accessed from Core::GetWindowHandle().
|
||||
|
||||
// ----------
|
||||
// Includes
|
||||
|
||||
#include "Common.h" // Common
|
||||
#include "FileUtil.h"
|
||||
#include "Timer.h"
|
||||
|
@ -252,11 +250,7 @@ EVT_MENU(IDM_FLOAT_JITWINDOW, CFrame::OnFloatWindow)
|
|||
EVT_MENU(IDM_FLOAT_SOUNDWINDOW, CFrame::OnFloatWindow)
|
||||
EVT_MENU(IDM_FLOAT_VIDEOWINDOW, CFrame::OnFloatWindow)
|
||||
|
||||
|
||||
#if defined(HAVE_SFML) && HAVE_SFML
|
||||
EVT_MENU(IDM_NETPLAY, CFrame::OnNetPlay)
|
||||
#endif
|
||||
|
||||
EVT_MENU(IDM_BROWSE, CFrame::OnBrowse)
|
||||
EVT_MENU(IDM_MEMCARD, CFrame::OnMemcard)
|
||||
EVT_MENU(IDM_IMPORTSAVE, CFrame::OnImportSave)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue