diff --git a/include/Athena/WiiSave.hpp b/include/Athena/WiiSave.hpp index 58208c7..e40aa8f 100644 --- a/include/Athena/WiiSave.hpp +++ b/include/Athena/WiiSave.hpp @@ -1,3 +1,4 @@ +#ifndef ATHENA_NO_SAVES // This file is part of libAthena. // // libAthena is free software: you can redistribute it and/or modify @@ -93,3 +94,5 @@ private: } // zelda #endif // __WII__SAVE_HPP__ +#endif // ATHENA_NO_SAVES + diff --git a/src/Athena/WiiSave.cpp b/src/Athena/WiiSave.cpp index e704286..f246fd6 100644 --- a/src/Athena/WiiSave.cpp +++ b/src/Athena/WiiSave.cpp @@ -1,3 +1,4 @@ +#ifndef ATHENA_NO_SAVES // This file is part of libAthena. // // libAthena is free software: you can redistribute it and/or modify @@ -106,3 +107,5 @@ WiiBanner* WiiSave::banner() const } } // zelda + +#endif // ATHENA_NO_SAVES