[Scummvm-git-logs] scummvm master -> 860ea3584793732cccb106d43cdd3a0fa9f6e496
criezy
criezy at scummvm.org
Mon Mar 15 01:38:10 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
860ea35847 AGS: Try to fix compilation error with undefined uint32_t
Commit: 860ea3584793732cccb106d43cdd3a0fa9f6e496
https://github.com/scummvm/scummvm/commit/860ea3584793732cccb106d43cdd3a0fa9f6e496
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2021-03-15T01:37:31Z
Commit Message:
AGS: Try to fix compilation error with undefined uint32_t
Changed paths:
engines/ags/console.cpp
engines/ags/console.h
diff --git a/engines/ags/console.cpp b/engines/ags/console.cpp
index 6943b2c928..a0fef57b1c 100644
--- a/engines/ags/console.cpp
+++ b/engines/ags/console.cpp
@@ -261,4 +261,4 @@ void LogOutputTarget::PrintMessage(const AGS3::AGS::Shared::DebugMessage &msg) {
}
-} // End of namespace CGE
+} // End of namespace AGS
diff --git a/engines/ags/console.h b/engines/ags/console.h
index a6c30d296f..e6e091cc04 100644
--- a/engines/ags/console.h
+++ b/engines/ags/console.h
@@ -27,6 +27,7 @@
#include "gui/debugger.h"
#include "ags/shared/debugging/debugmanager.h"
#include "ags/shared/debugging/outputhandler.h"
+#include "ags/shared/core/types.h"
namespace AGS {
@@ -64,6 +65,6 @@ public:
void PrintMessage(const AGS3::AGS::Shared::DebugMessage &msg) override;
};
-} // End of namespace CGE
+} // End of namespace AGS
#endif
More information about the Scummvm-git-logs
mailing list