mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-31 23:42:38 +00:00
Use .cpp suffix when detecting libraries. On some systems, g++
is required to correctly link with C++ libraries like wxw. Tell OS X that the user is doing something when using the wiimote so that the screensaver doesn't come on when playing a Wii game. Replace unnecessary floating point with integer math. Remove unnecessary <sys/stat.h>'s. Correct a few type nits. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5995 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
9ff5e836eb
commit
24fdf942a4
14 changed files with 20 additions and 23 deletions
|
@ -372,8 +372,8 @@ CFrame::CFrame(wxFrame* parent,
|
|||
|
||||
// Create timer
|
||||
#if wxUSE_TIMER
|
||||
int TimesPerSecond = 10; // We don't need more than this
|
||||
m_timer.Start( floor((double)(1000 / TimesPerSecond)) );
|
||||
const int TimesPerSecond = 10; // We don't need more than this
|
||||
m_timer.Start(1000 / TimesPerSecond);
|
||||
#endif
|
||||
|
||||
// Create toolbar bitmaps
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue