Skip to content

Commit

Permalink
Build fix for non-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sum2012 committed Jan 28, 2017
1 parent bd6764b commit 033e060
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core/HLE/sceUmd.cpp
Expand Up @@ -38,6 +38,7 @@
#include "Core/FileSystems/MetaFileSystem.h"
#include "Core/FileSystems/ISOFileSystem.h"
#include "Core/FileSystems/VirtualDiscFileSystem.h"
#include "base/timeutil.h"
#ifdef USING_WIN_UI
#include "Windows/MainWindowMenu.h"
#endif
Expand Down Expand Up @@ -504,7 +505,7 @@ void __UmdReplace(std::string filepath) {
}
delete currentUMD;
UMD_insterted = false;
Sleep(200); // Wait sceUmdCheckMedium call
sleep_ms(200); // Wait sceUmdCheckMedium call
UMD_insterted = true;
// TODO Is this always correct if UMD was not activated?
u32 notifyArg = PSP_UMD_PRESENT | PSP_UMD_READABLE | PSP_UMD_CHANGED;
Expand Down

0 comments on commit 033e060

Please sign in to comment.