Skip to content

Commit

Permalink
Missed a few
Browse files Browse the repository at this point in the history
  • Loading branch information
z2442 committed Jan 28, 2025
1 parent 0ab6dba commit 08c2b77
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 7 deletions.
6 changes: 5 additions & 1 deletion Source/Debug/DebugLog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


#include <fstream>
#include <fmt/core.h>
#if defined(GCC_OLD)
#include <fmt/core.h>
#else
#include <format>
#endif
#include <iostream>
#include "Utility/Paths.h"
#ifdef DAEDALUS_LOG
Expand Down
6 changes: 5 additions & 1 deletion Source/Debug/Dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <filesystem>
#include <iostream>
#include <fstream>
#include <fmt/core.h>
#if defined(GCC_OLD)
#include <fmt/core.h>
#else
#include <format>
#endif
#include <cstring>

#include "Interface/ConfigOptions.h"
Expand Down
6 changes: 5 additions & 1 deletion Source/HLEGraphics/CachedTexture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

#include <vector>
#include <random>
#include <fmt/core.h>
#if defined(GCC_OLD)
#include <fmt/core.h>
#else
#include <format>
#endif

#include "Interface/ConfigOptions.h"
#include "Core/ROM.h"
Expand Down
6 changes: 5 additions & 1 deletion Source/HLEGraphics/DLDebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

#ifdef DAEDALUS_DEBUG_DISPLAYLIST
#include <stdarg.h>
#include <fmt/core.h>
#if defined(GCC_OLD)
#include <fmt/core.h>
#else
#include <format>
#endif
#include <filesystem>
#include "Core/ROM.h"
#include "Debug/DBGConsole.h"
Expand Down
6 changes: 5 additions & 1 deletion Source/SysCTR/UI/InGameMenu.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#include <3ds.h>
#include <GL/picaGL.h>
#include <stdio.h>
#include <fmt/core.h>
#if defined(GCC_OLD)
#include <fmt/core.h>
#else
#include <format>
#endif

#include "UserInterface.h"
#include "InGameMenu.h"
Expand Down
6 changes: 5 additions & 1 deletion Source/UI/SavestateSelectorComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


#include <filesystem>
#include <fmt/core.h>
#if defined(GCC_OLD)
#include <fmt/core.h>
#else
#include <format>
#endif
#include <chrono>
#include <iostream>
#include <string_view>
Expand Down
6 changes: 5 additions & 1 deletion Source/Utility/Translate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <vector>
#include <iostream>
#include <string>
#include <fmt/core.h>
#if defined(GCC_OLD)
#include <fmt/core.h>
#else
#include <format>
#endif
#include <fstream>
#include <sstream>

Expand Down

0 comments on commit 08c2b77

Please sign in to comment.