mark all local functions as static

This commit is contained in:
degasus
2014-07-08 14:29:26 +02:00
parent 3ff1c538ee
commit 22e1aa5bb4
93 changed files with 260 additions and 251 deletions

View File

@@ -79,7 +79,7 @@ void EnableCompression(bool compression)
g_use_compression = compression;
}
void DoState(PointerWrap &p)
static void DoState(PointerWrap &p)
{
u32 version = STATE_VERSION;
{
@@ -159,7 +159,7 @@ void VerifyBuffer(std::vector<u8>& buffer)
}
// return state number not in map
int GetEmptySlot(std::map<double, int> m)
static int GetEmptySlot(std::map<double, int> m)
{
for (int i = 1; i <= (int)NUM_STATES; i++)
{
@@ -180,7 +180,7 @@ int GetEmptySlot(std::map<double, int> m)
static std::string MakeStateFilename(int number);
// read state timestamps
std::map<double, int> GetSavedStates()
static std::map<double, int> GetSavedStates()
{
StateHeader header;
std::map<double, int> m;
@@ -209,7 +209,7 @@ struct CompressAndDumpState_args
bool wait;
};
void CompressAndDumpState(CompressAndDumpState_args save_args)
static void CompressAndDumpState(CompressAndDumpState_args save_args)
{
std::lock_guard<std::mutex> lk(*save_args.buffer_mutex);
if (!save_args.wait)
@@ -356,7 +356,7 @@ bool ReadHeader(const std::string& filename, StateHeader& header)
return true;
}
void LoadFileStateData(const std::string& filename, std::vector<u8>& ret_data)
static void LoadFileStateData(const std::string& filename, std::vector<u8>& ret_data)
{
Flush();
File::IOFile f(filename, "rb");