Skip to content
Permalink
Browse files
Merge pull request #6035 from leoetlino/warning-fixes
Core: Fix warnings
  • Loading branch information
degasus committed Sep 8, 2017
2 parents 626a843 + a8849f8 commit 62a331d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -46,7 +46,7 @@

namespace WiiUtils
{
bool InstallWAD(IOS::HLE::Kernel& ios, const DiscIO::WiiWAD& wad)
static bool InstallWAD(IOS::HLE::Kernel& ios, const DiscIO::WiiWAD& wad)
{
if (!wad.IsValid())
{
@@ -21,7 +21,7 @@
#include "UICommon/CommandLineParse.h"
#include "UICommon/UICommon.h"

bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no, MsgType style)
static bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no, MsgType style)
{
return RunOnObject(QApplication::instance(), [&] {
QMessageBox message_box(QApplication::activeWindow());

0 comments on commit 62a331d

Please sign in to comment.