Linux build fix. Why would you swap with an empty temporary vector instead of clearing a vector? What were you thinking?

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7368 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice 2011-03-17 12:46:54 +00:00
parent 88c8b891f7
commit e26efc8561
1 changed files with 2 additions and 2 deletions

View File

@ -392,8 +392,8 @@ void Shutdown()
{
Flush();
g_current_buffer.swap(std::vector<u8>());
g_undo_load_buffer.swap(std::vector<u8>());
g_current_buffer.clear();
g_undo_load_buffer.clear();
}
static std::string MakeStateFilename(int number)